/etc/ppp/ip-down.d/zz-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 15 16 17 18 | #!/bin/sh
# 99ibod-down by Paul Martin 21 Feb 2001. You may treat this program as if
# it were in the public domain.
# 99ibod-down stops ibod when ippp0 goes down.
test -f /usr/bin/ibod || exit 0
if [ "$PPP_IFACE" = "ippp0" ]
then
(
start-stop-daemon --stop --quiet \
--pidfile /var/run/ibod.pid --exec /usr/bin/ibod && \
rm /var/run/ibod.pid \
) \
|| true
fi
|