18 lines
582 B
Plaintext
18 lines
582 B
Plaintext
# System-wide configuration
|
|
|
|
export PATH='/usr/local/bin:/usr/bin'
|
|
|
|
# Where to look for initscripts
|
|
cfg_initscripts_dir='/etc/rc.d'
|
|
|
|
# Hostname
|
|
cfg_hostname='changeme'
|
|
|
|
# Services to start at boot time
|
|
cfg_services+=( 'mount' 'udev' 'rc.local' ) # You probably do need these
|
|
cfg_services+=( '@syslog-ng' '@crond' '@network' '@sshd' '@dbus' '@alsa' ) # Services starting with '@' start in background.
|
|
# cfg_services+=( %agetty-tty{2..6} ) # Services starting with '%' are restarted if the die.
|
|
|
|
# Modules to be loaded at boot time. Most people don't need this
|
|
#cfg_modules=( 'tun' )
|