From e4199494aeda5760d823e2e73ae7f6527b902096 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 26 Apr 2012 20:20:19 -0400 Subject: Write "networking", "mdev", and "sysfs" services. --- (limited to 'src/etc/init.d/networking') diff --git a/src/etc/init.d/networking b/src/etc/init.d/networking new file mode 100644 index 0000000..def938f --- /dev/null +++ b/src/etc/init.d/networking @@ -0,0 +1,24 @@ +#!/bin/sh + +case "${1}" in + start) + printf 'Configuring network interfaces... ' + 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 -- cgit v0.9.1