From 69f288b2c018e64560744b2aabbfde53a8acdb2f Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 08 Aug 2013 15:22:39 -0400 Subject: Add some init scripts. --- (limited to 'src.etc/init.d/networking') diff --git a/src.etc/init.d/networking b/src.etc/init.d/networking new file mode 100755 index 0000000..12fb513 --- /dev/null +++ b/src.etc/init.d/networking @@ -0,0 +1,25 @@ +#!/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 -- cgit v0.9.1