diff options
-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 |