diff options
author | joey <joey> | 2001-08-23 19:52:25 +0000 |
---|---|---|
committer | joey <joey> | 2001-08-23 19:52:25 +0000 |
commit | 1f33258d1a687b64d7252fc144c2dd5530740272 (patch) | |
tree | e3fec3cd322240967f64df0b3dc7e533b4f4a067 /autoscripts/postinst-init | |
parent | 23c8924fc90386d1a08061ff19ad7c0d01d6b2c1 (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/postinst-init')
-rw-r--r-- | autoscripts/postinst-init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoscripts/postinst-init b/autoscripts/postinst-init index 159b12d..051f774 100644 --- a/autoscripts/postinst-init +++ b/autoscripts/postinst-init @@ -1,4 +1,4 @@ -if [ -e "/etc/init.d/#SCRIPT#" ]; then +if [ -x "/etc/init.d/#SCRIPT#" ]; then update-rc.d #SCRIPT# #INITPARMS# >/dev/null /etc/init.d/#SCRIPT# start fi |