Import Debian changes 1.0.32-1
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.
This commit is contained in:
commit
ac78971aab
32 changed files with 446 additions and 571 deletions
6
debian/tinc.if-pre-up
vendored
6
debian/tinc.if-pre-up
vendored
|
|
@ -43,14 +43,14 @@ test -n "$LIMITS" && setlimits $LIMITS
|
|||
|
||||
# Wait for it to come up properly
|
||||
|
||||
sleep 0.1
|
||||
/bin/sleep 0.1
|
||||
i=0;
|
||||
while [ ! -f $IF_TINC_PIDFILE ] ; do
|
||||
if [ $i = '30' ] ; then
|
||||
echo 'Failed to start tinc daemon!'
|
||||
exit 1
|
||||
fi
|
||||
sleep 0.1
|
||||
/bin/sleep 0.1
|
||||
i=$(($i+1))
|
||||
done
|
||||
|
||||
|
|
@ -63,7 +63,7 @@ while read pid rest < $IF_TINC_PIDFILE ; do
|
|||
echo 'Failed to start tinc daemon!'
|
||||
exit 1
|
||||
fi
|
||||
sleep 0.1
|
||||
/bin/sleep 0.1
|
||||
i=$(($i+1))
|
||||
done
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue