]> git.donarmstrong.com Git - debhelper.git/blob - autoscripts/postinst-init-restart
Updated French man page translation. Closes: #685560
[debhelper.git] / autoscripts / postinst-init-restart
1 if [ -x "/etc/init.d/#SCRIPT#" ]; then
2         update-rc.d #SCRIPT# #INITPARMS# >/dev/null
3         if [ -n "$2" ]; then
4                 _dh_action=restart
5         else
6                 _dh_action=start
7         fi
8         invoke-rc.d #SCRIPT# $_dh_action || #ERROR_HANDLER#
9 fi