diff options
Diffstat (limited to 'init.d/networking')
-rwxr-xr-x | init.d/networking | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/init.d/networking b/init.d/networking deleted file mode 100755 index 11cb8e7..0000000 --- a/init.d/networking +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/runscript - -# note that the spoofprotect, syncoockies and ip_forward options are set in -# /etc/sysctl.conf - -start() { - ebegin "Configuring network interfaces" - ifup -a >/dev/null 2>&1 - eend $? -} - -stop() { - ebegin "Deconfiguring network interfaces" - ifdown -a >/dev/null 2>&1 - eend $? -} - -restart() { - ebegin "Reconfiguring network interfaces" - ifdown -a >/dev/null 2>&1 && ifup -a >/dev/null 2>&1 - eend $? -} - |