summaryrefslogtreecommitdiff
path: root/core/runit/rc.local
blob: 01a630b055c06b4918db56d94999f8ebbc2f08cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
#
# /etc/rc.local - Local startup commands
#

# Run scripts in /etc/boot.d if present
if [ -d /etc/boot.d ]; then
    for script in /etc/boot.d/*; do
        [ -x "$script" ] && "$script"
    done
fi

# End of file