diff options
author | joey <joey> | 2002-09-16 00:05:19 +0000 |
---|---|---|
committer | joey <joey> | 2002-09-16 00:05:19 +0000 |
commit | 2486063234469e39cce67055c5bd0644213724cf (patch) | |
tree | 22b33f6042b712ed78dd428894c881c3beaded7a /autoscripts/prerm-init | |
parent | 89a8e4df94d07ca360f97f57ff22ac8f7f7c3a5f (diff) |
r547: * Use invoke-rc.d always now that it is in policy. Fall back to old behavior
if invoke-rc.d is not present, so versioned deps on sysvinit are not
needed.
Diffstat (limited to 'autoscripts/prerm-init')
-rw-r--r-- | autoscripts/prerm-init | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/autoscripts/prerm-init b/autoscripts/prerm-init index 9882c7c..eab98c7 100644 --- a/autoscripts/prerm-init +++ b/autoscripts/prerm-init @@ -1,3 +1,7 @@ if [ -x "/etc/init.d/#SCRIPT#" ]; then - /etc/init.d/#SCRIPT# stop + if [ -x /usr/sbin/invoke-rc.d ] ; then + invoke-rc.d #SCRIPT# stop + else + /etc/init.d/#SCRIPT# stop + fi fi |