ac78971aab
tinc (1.0.32-1) unstable; urgency=medium * New upstream release. * Add a note to new nets.boot files that it is not used with systemd. Closes: #841052 * In the post-down script, read the pid file only once. Closes: #832784 * Explicitly use /bin/sleep from coreutils. Closes: #772379 * Bump Standards-Version.
41 lines
632 B
Bash
Executable file
41 lines
632 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$METHOD" = loopback -o -z "$IF_TINC_NET" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
# Determine location of the PID file
|
|
|
|
EXTRA=""
|
|
if [ -n "$IF_TINC_PIDFILE" ]; then
|
|
EXTRA="--pidfile=$IF_TINC_PIDFILE"
|
|
else
|
|
IF_TINC_PIDFILE=/var/run/tinc.$IF_TINC_NET.pid
|
|
fi
|
|
|
|
# Stop the tinc daemon
|
|
|
|
read pid rest < $IF_TINC_PIDFILE 2>/dev/null
|
|
|
|
/usr/sbin/tincd -n "$IF_TINC_NET" -k $EXTRA
|
|
|
|
# Wait for it to shut down properly
|
|
|
|
/bin/sleep 0.1
|
|
i=0;
|
|
while [ -f $IF_TINC_PIDFILE ] ; do
|
|
if [ ! -e "/proc/$pid" ] ; then
|
|
exit 0
|
|
fi
|
|
|
|
if [ $i = '30' ] ; then
|
|
echo 'Failed to stop tinc daemon!'
|
|
exit 1
|
|
fi
|
|
/bin/sleep 0.1
|
|
i=$(($i+1))
|
|
done
|
|
|
|
exit 0
|