mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
14 lines
145 B
Bash
Executable File
14 lines
145 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# start Networking
|
|
#
|
|
# runlevels: openelec, text, debug
|
|
|
|
. /etc/sysconfig
|
|
|
|
progress "Starting Networking"
|
|
|
|
/sbin/ifup -a &
|
|
|
|
exit 0
|