diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-07-25 18:01:03 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-07-25 18:21:39 +0200 |
commit | b617dbdc6b56f0c08bcb8f6816395f641784147a (patch) | |
tree | 86e78bd8c9161f529c7759cf8d6bcfef6480ca4e /etc/network/if-up.d | |
parent | f88eebd8865379a9d3984e5160693c34f141e6a4 (diff) | |
download | itzks-systems-b617dbdc6b56f0c08bcb8f6816395f641784147a.tar.gz itzks-systems-b617dbdc6b56f0c08bcb8f6816395f641784147a.tar.bz2 itzks-systems-b617dbdc6b56f0c08bcb8f6816395f641784147a.zip |
examples/disklserver/tftp: Adapt tftp configuration example (disklserver) to Debian Edu jessie.
Diffstat (limited to 'etc/network/if-up.d')
-rwxr-xr-x | etc/network/if-up.d/itzks-autofs | 8 | ||||
-rwxr-xr-x | etc/network/if-up.d/itzks-cups | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/etc/network/if-up.d/itzks-autofs b/etc/network/if-up.d/itzks-autofs index 974a1c6..369ca23 100755 --- a/etc/network/if-up.d/itzks-autofs +++ b/etc/network/if-up.d/itzks-autofs @@ -1,7 +1,9 @@ #!/bin/sh -if test -e /etc/network/if-up.d/autofs; then exit 0; fi -if test -e /etc/network/if-up.d/debian-edu; then exit 0; fi +# DISABLED for Debian jessie and beyond... -invoke-rc.d --quiet autofs restart +#if test -e /etc/network/if-up.d/autofs; then exit 0; fi +#if test -e /etc/network/if-up.d/debian-edu; then exit 0; fi + +#invoke-rc.d --quiet autofs restart diff --git a/etc/network/if-up.d/itzks-cups b/etc/network/if-up.d/itzks-cups index 229e9ab..c07f740 100755 --- a/etc/network/if-up.d/itzks-cups +++ b/etc/network/if-up.d/itzks-cups @@ -1,7 +1,9 @@ #!/bin/sh -if test -e /etc/network/if-up.d/cups; then exit 0; fi -if test -e /etc/network/if-up.d/debian-edu; then exit 0; fi +# DISABLED for Debian jessie and beyond... -invoke-rc.d --quiet cups restart +#if test -e /etc/network/if-up.d/cups; then exit 0; fi +#if test -e /etc/network/if-up.d/debian-edu; then exit 0; fi +# +#invoke-rc.d --quiet cups restart |