summaryrefslogtreecommitdiff
path: root/autoscripts/prerm-init-norestart
diff options
context:
space:
mode:
authorjoey <joey>2001-08-23 19:52:25 +0000
committerjoey <joey>2001-08-23 19:52:25 +0000
commit1f33258d1a687b64d7252fc144c2dd5530740272 (patch)
treee3fec3cd322240967f64df0b3dc7e533b4f4a067 /autoscripts/prerm-init-norestart
parent23c8924fc90386d1a08061ff19ad7c0d01d6b2c1 (diff)
r487: * dh_movefiles: Typo, Closes: #106532
* Use -x to test for existance of init scripts, rather then -e since we'll be running them, Closes: #109692 * dh_clean: remove debian/*.debhelper. No need to name files specifically; any file matching that is a debhelper temp file. Closes: #106514, #85520
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 47a49d4a..b7e311d3 100644
--- a/autoscripts/prerm-init-norestart
+++ b/autoscripts/prerm-init-norestart
@@ -1,3 +1,3 @@
-if [ -e "/etc/init.d/#SCRIPT#" -a "$1" = remove ]; then
+if [ -x "/etc/init.d/#SCRIPT#" -a "$1" = remove ]; then
/etc/init.d/#SCRIPT# stop
fi