summaryrefslogtreecommitdiffstats
path: root/src/etc/init.d/networking
diff options
context:
space:
mode:
Diffstat (limited to 'src/etc/init.d/networking')
-rwxr-xr-xsrc/etc/init.d/networking25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/etc/init.d/networking b/src/etc/init.d/networking
deleted file mode 100755
index 12fb513..0000000
--- a/src/etc/init.d/networking
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-case "${1}" in
- start)
- printf 'Configuring network interfaces... '
- ifdown -a > /dev/null 2>&1
- ifup -a
- printf 'done.\n'
- ;;
- stop)
- printf 'Deconfiguring network interfaces... '
- ifdown -a
- printf 'done.\n'
- ;;
- restart)
- printf 'Reconfiguring network interfaces... '
- ifdown -a
- ifup -a
- printf 'done.\n'
- ;;
- *)
- printf 'Usage: %s {start|stop|restart}\n' "${0}" >&2
- exit 1
- ;;
-esac