summaryrefslogtreecommitdiffstats
path: root/package/initscripts/init.d
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2017-07-02 16:35:50 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-07-04 23:38:18 +0200
commit5fb1b867821b4e8968ca7f364196a5e67e80c436 (patch)
treeca663804f556dc9058c8146c170d41ecc404f10b /package/initscripts/init.d
parentcaaff41ec168d4abe083eccebb534c555b816e66 (diff)
downloadbuildroot-5fb1b867821b4e8968ca7f364196a5e67e80c436.tar.gz
buildroot-5fb1b867821b4e8968ca7f364196a5e67e80c436.zip
package/ifupdown-scripts: new package
The ifupdown scripts can be used independently of the init system, be it sysv, busybox or systemd; they could even be used when there is no init system (i.e. the user is providing his own). Currently, those ifupdown scripts are bundled in the skeleton. But we soon will have a skeleton specific to systemd, so we would be missing those scripts (when systemd-networkd is not enabled). So, move those scripts to their own package. To keep the current behaviour (before it is changed in future commits), we make that package default to y, but depend on the default skeleton. Instead of being a target-finalize hook, the scripts are installed as any other package are, with a package install-target command. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> [Thomas: drop empty IFUPDOWN_SCRIPTS_SOURCE] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/initscripts/init.d')
-rwxr-xr-xpackage/initscripts/init.d/S40network30
1 files changed, 0 insertions, 30 deletions
diff --git a/package/initscripts/init.d/S40network b/package/initscripts/init.d/S40network
deleted file mode 100755
index 642c5013ac..0000000000
--- a/package/initscripts/init.d/S40network
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-#
-# Start the network....
-#
-
-# Debian ifupdown needs the /run/network lock directory
-mkdir -p /run/network
-
-case "$1" in
- start)
- printf "Starting network: "
- /sbin/ifup -a
- [ $? = 0 ] && echo "OK" || echo "FAIL"
- ;;
- stop)
- printf "Stopping network: "
- /sbin/ifdown -a
- [ $? = 0 ] && echo "OK" || echo "FAIL"
- ;;
- restart|reload)
- "$0" stop
- "$0" start
- ;;
- *)
- echo "Usage: $0 {start|stop|restart}"
- exit 1
-esac
-
-exit $?
-
OpenPOWER on IntegriCloud