summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/networking
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-08-08 15:26:37 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-08-08 15:26:37 (EDT)
commit60ee13961584e957020d30daf287d03e55a50763 (patch)
treeb6058d13da6bc00efee4d61b635df2e1a0158701 /src.etc/init.d/networking
parent6b4e7447cb8e8d4265c2c8d846ac39de449c1ab1 (diff)
Rewrite init scripts.
Diffstat (limited to 'src.etc/init.d/networking')
-rwxr-xr-xsrc.etc/init.d/networking37
1 files changed, 26 insertions, 11 deletions
diff --git a/src.etc/init.d/networking b/src.etc/init.d/networking
index 12fb513..66967f9 100755
--- a/src.etc/init.d/networking
+++ b/src.etc/init.d/networking
@@ -1,22 +1,37 @@
#!/bin/sh
+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'
+}
+
case "${1}" in
start)
- printf 'Configuring network interfaces... '
- ifdown -a > /dev/null 2>&1
- ifup -a
- printf 'done.\n'
+ start
;;
stop)
- printf 'Deconfiguring network interfaces... '
- ifdown -a
- printf 'done.\n'
+ stop
;;
restart)
- printf 'Reconfiguring network interfaces... '
- ifdown -a
- ifup -a
- printf 'done.\n'
+ restart
;;
*)
printf 'Usage: %s {start|stop|restart}\n' "${0}" >&2