This file is indexed.

/etc/ppp/ip-up.d/00-ibod is in ibod 1.5.0-6.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#!/bin/sh

# 00ibod-up by Paul Martin 21 Feb 2001. You may treat this program as if
# it were in the public domain.

# 00ibod-up starts ibod when ippp0 comes up.

test -f /usr/bin/ibod || exit 0

if [ "$PPP_IFACE" = "ippp0" ]
then
    start-stop-daemon --start --quiet --background --make-pidfile \
	--pidfile /var/run/ibod.pid --exec /usr/bin/ibod
fi