init
This commit is contained in:
parent
5b9b038001
commit
7ef5bbeecb
42
bin/rc
Executable file
42
bin/rc
Executable file
|
@ -0,0 +1,42 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
rc.hostname() { hostname "$cfg_hostname"; }
|
||||||
|
|
||||||
|
rc.services() {
|
||||||
|
for i in "${cfg_services[@]}"; do
|
||||||
|
"${cfg_initscripts_dir}/$i" "$1"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
rc.boot() {
|
||||||
|
rc.hostname
|
||||||
|
rc.modules
|
||||||
|
rc.services start
|
||||||
|
}
|
||||||
|
|
||||||
|
rc.shutdown() {
|
||||||
|
rc.services stop
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
8
etc/rc.conf
Normal file
8
etc/rc.conf
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# System-wide configuration
|
||||||
|
export PATH='/usr/local/bin:/usr/bin'
|
||||||
|
|
||||||
|
cfg_initscripts_dir='/etc/rc.d'
|
||||||
|
|
||||||
|
cfg_hostname='generic'
|
||||||
|
cfg_services=( 'fsck' 'udev' 'mount' 'syslog-ng' 'crond' 'network' 'dhcpcd' 'sshd' 'rc.local' )
|
||||||
|
# cfg_modules=()
|
Loading…
Reference in New Issue
Block a user