diff options
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/network/if-up.d/autofs | 6 | ||||
-rwxr-xr-x | etc/network/if-up.d/cups | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/etc/network/if-up.d/autofs b/etc/network/if-up.d/autofs new file mode 100755 index 0000000..8f98196 --- /dev/null +++ b/etc/network/if-up.d/autofs @@ -0,0 +1,6 @@ +#!/bin/sh + +if [ -x /etc/init.d/autofs ]; then + /etc/init.d/autofs restart +fi + diff --git a/etc/network/if-up.d/cups b/etc/network/if-up.d/cups new file mode 100755 index 0000000..55f4f32 --- /dev/null +++ b/etc/network/if-up.d/cups @@ -0,0 +1,6 @@ +#!/bin/sh + +if [ -x /etc/init.d/cups ]; then + /etc/init.d/cups restart +fi + |