aboutsummaryrefslogtreecommitdiff
path: root/rc.multi
blob: c68252a653954888cd69f2f9ce1d8aed7273e5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
#
# /etc/rc.multi
#

. /etc/rc.conf
. /etc/rc.d/functions

# Start daemons
for daemon in "${DAEMONS[@]}"; do
  /etc/rc.d/$daemon start
done

if [ -x /etc/rc.local ]; then
    /etc/rc.local
fi

# End of file