mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
27 lines
453 B
Bash
27 lines
453 B
Bash
#!/bin/bash
|
|
#
|
|
# /etc/rc.multi
|
|
#
|
|
|
|
. /etc/rc.conf
|
|
. /etc/rc.d/functions
|
|
|
|
# Load sysctl variables if sysctl.conf is present
|
|
[ -r /etc/sysctl.conf ] && /sbin/sysctl -q -p &>/dev/null
|
|
|
|
# Start daemons
|
|
for daemon in "${DAEMONS[@]}"; do
|
|
if [ "$daemon" = "${daemon#!}" ]; then
|
|
if [ "$daemon" = "${daemon#@}" ]; then
|
|
start_daemon $daemon
|
|
else
|
|
start_daemon_bkgd ${daemon:1}
|
|
fi
|
|
fi
|
|
done
|
|
|
|
if [ -x /etc/rc.local ]; then
|
|
/etc/rc.local
|
|
fi
|
|
|
|
# End of file
|