tinc/debian/tinc.if-post-down

20 lines
267 B
Text
Raw Normal View History

#!/bin/sh
set -e
if [ "$IF_TINC_NET" ] ; then
tincd -n "$IF_TINC_NET" -k
sleep 0.1
i=0;
while [ -f "/var/run/tinc.$IF_TINC_NET.pid" ] ; do
if [ $i = '30' ] ; then
echo 'Failed to stop tinc daemon!'
exit 1
fi
sleep 0.1
i=$(($i+1))
done
fi
exit 0