2013-09-29 01:53:44 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
rc.hostname() { hostname "$cfg_hostname"; }
|
|
|
|
|
2014-02-25 05:28:01 +00:00
|
|
|
rc.services_start() {
|
|
|
|
local service_name start_mode
|
2014-02-24 07:20:05 +00:00
|
|
|
|
2013-09-29 01:53:44 +00:00
|
|
|
for i in "${cfg_services[@]}"; do
|
2014-02-25 05:28:01 +00:00
|
|
|
unset service_name
|
|
|
|
|
2014-02-24 07:20:05 +00:00
|
|
|
[[ "$i" =~ ^@ ]] && {
|
|
|
|
service_name="${i##*@}"
|
2014-02-25 05:28:01 +00:00
|
|
|
start_mode='bg'
|
2014-02-24 07:20:05 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 05:28:01 +00:00
|
|
|
[[ "$i" =~ ^% ]] && {
|
|
|
|
service_name="${i##*%}"
|
|
|
|
start_mode='watch'
|
2014-02-24 07:20:05 +00:00
|
|
|
}
|
2014-02-25 05:28:01 +00:00
|
|
|
|
|
|
|
service_name=${service_name:-$i}
|
|
|
|
start_mode="${start_mode:-start}"
|
|
|
|
|
|
|
|
case "$start_mode" in
|
|
|
|
bg) "${cfg_initscripts_dir}/$service_name" start &;;
|
|
|
|
watch) "${cfg_initscripts_dir}/$service_name" watch &;;
|
|
|
|
start) "${cfg_initscripts_dir}/$service_name" start;;
|
|
|
|
*) echo "Mode $start_mode not supported";;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
rc.services_stop() {
|
|
|
|
for i in "${cfg_services[@]}"; do
|
|
|
|
"${cfg_initscripts_dir}/$i" stop
|
2013-09-29 01:53:44 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
rc.boot() {
|
|
|
|
rc.hostname
|
|
|
|
rc.modules
|
2014-02-25 05:28:01 +00:00
|
|
|
rc.services_start
|
2013-09-29 01:53:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rc.shutdown() {
|
2014-02-25 05:28:01 +00:00
|
|
|
rc.services_stop
|
2013-09-29 01:53:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rc.hostname() {
|
|
|
|
[[ "$cfg_hostname" ]] && { hostname "$cfg_hostname"; }
|
|
|
|
}
|
|
|
|
|
|
|
|
rc.modules() {
|
|
|
|
for i in "${cfg_modules[@]}"; do
|
|
|
|
modprobe "$i"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
source "/etc/rc.conf"
|
|
|
|
|
|
|
|
action="$1"
|
|
|
|
action="${action:-boot}"
|
|
|
|
|
|
|
|
case "$action" in
|
|
|
|
boot)
|
|
|
|
echo "Welcome to `uname -rs`"
|
|
|
|
rc.boot
|
|
|
|
;;
|
|
|
|
shutdown) rc.shutdown;;
|
|
|
|
esac
|