summaryrefslogtreecommitdiff
path: root/autoscripts/prerm-init-norestart
diff options
context:
space:
mode:
authorjoey <joey>2001-03-13 11:13:51 +0000
committerjoey <joey>2001-03-13 11:13:51 +0000
commit113433b867877a98915194631f8bbf14c6f65048 (patch)
tree87aa0106601cf4fd0d54f0bd6ce15c2927207875 /autoscripts/prerm-init-norestart
parent515a01d46a768ee63a4665c643cdd6889ffaebfc (diff)
r451: * Fixed broken -e #SCRIPT# tests in init script start/stop/restart code.
Arrgh. All packages built with the old code (that is, all daemon packages built with debhelper 3.0.9!) are broken. Closes: #89472
Diffstat (limited to 'autoscripts/prerm-init-norestart')
-rw-r--r--autoscripts/prerm-init-norestart2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoscripts/prerm-init-norestart b/autoscripts/prerm-init-norestart
index e04ec25a..47a49d4a 100644
--- a/autoscripts/prerm-init-norestart
+++ b/autoscripts/prerm-init-norestart
@@ -1,3 +1,3 @@
-if [ -e "#SCRIPT#" -a "$1" = remove ]; then
+if [ -e "/etc/init.d/#SCRIPT#" -a "$1" = remove ]; then
/etc/init.d/#SCRIPT# stop
fi