19 lines
391 B
Text
19 lines
391 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# Automatically added by dh_installinit, edited for use with debconf
|
||
|
if [ -x "/etc/init.d/tinc" ]; then
|
||
|
if [ -e /usr/share/debconf/confmodule ] ; then
|
||
|
. /usr/share/debconf/confmodule
|
||
|
db_get tinc/restart_on_upgrade
|
||
|
if [ "$RET" = "true" ] ; then
|
||
|
/etc/init.d/tinc stop
|
||
|
fi
|
||
|
db_stop
|
||
|
else
|
||
|
/etc/init.d/tinc stop
|
||
|
fi
|
||
|
fi
|
||
|
# End automatically added section
|
||
|
|
||
|
#DEBHELPER#
|