blob: 6e382ff9b7129dd0c93cfe1842d43febe84bc096 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
# run script(s) at /etc/runit/rc/, suffix must be .sh, prefix
# must be [1|3] which denote stage 1 or 3.
run_rc_stage() {
local prefix="${1}"
local prev_opt=$(shopt -p nullglob)
shopt -s nullglob
for file in /etc/runit/rc/"${prefix}".*.sh; do
if [[ ! -x "${file}" ]] || [[ ! -s "${file}" ]] ; then
continue
fi
. "${file}"
done
${prev_opt}
}
|