diff options
| author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2012-08-14 12:29:08 +0200 | 
|---|---|---|
| committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2012-08-14 12:29:08 +0200 | 
| commit | b1941b541410139cbb2473c2a71000816b5c6a66 (patch) | |
| tree | 76f918764b81b4e3b359a612e3118d5370bb9b12 | |
| parent | 2285ebeb037a61047064a1e12cccf4429431ffa8 (diff) | |
| download | itzks-systems-b1941b541410139cbb2473c2a71000816b5c6a66.tar.gz itzks-systems-b1941b541410139cbb2473c2a71000816b5c6a66.tar.bz2 itzks-systems-b1941b541410139cbb2473c2a71000816b5c6a66.zip  | |
etc/network/if-up.d/{cups,autofs}: Use invoke-rc.d instead of direct init script calls.
| -rw-r--r-- | debian/changelog | 2 | ||||
| -rwxr-xr-x | etc/network/if-up.d/autofs | 4 | ||||
| -rwxr-xr-x | etc/network/if-up.d/cups | 4 | 
3 files changed, 4 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog index d887608..b56505b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,8 @@ itzks-systems (2012.08.09.6) UNRELEASED; urgency=low      + Ship if-up.d scripts: cups, autofs.    * /debian/itzks-systems-config.install, etc/apt/*:      + Provide non-default APT sources. +  * etc/network/if-up.d/{cups,autofs}: +    + Use invoke-rc.d instead of direct init script calls.   -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de>  Tue, 14 Aug 2012 08:06:56 +0200 diff --git a/etc/network/if-up.d/autofs b/etc/network/if-up.d/autofs index 8f98196..1e0a705 100755 --- a/etc/network/if-up.d/autofs +++ b/etc/network/if-up.d/autofs @@ -1,6 +1,4 @@  #!/bin/sh -if [ -x /etc/init.d/autofs ]; then -	/etc/init.d/autofs restart -fi +invoke-rc.d --quiet autofs restart diff --git a/etc/network/if-up.d/cups b/etc/network/if-up.d/cups index 55f4f32..f7e41e7 100755 --- a/etc/network/if-up.d/cups +++ b/etc/network/if-up.d/cups @@ -1,6 +1,4 @@  #!/bin/sh -if [ -x /etc/init.d/cups ]; then -	/etc/init.d/cups restart -fi +invoke-rc.d --quiet cups restart  | 
