spark-rc/rc.conf

49 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2015-10-13 08:23:10 +00:00
# A default PATH
export PATH='/usr/local/bin:/usr/local/sbin:/usr/bin'
2014-08-09 10:59:12 +00:00
2015-10-13 08:23:10 +00:00
# Locale
export LC_ALL='en_US.UTF-8'
2014-08-09 10:59:12 +00:00
# Hostname
cfg_hostname='spark'
2014-08-09 10:59:12 +00:00
2014-11-06 21:09:34 +00:00
# Timezone
# Uncomment and change this to yours
2014-11-06 21:09:34 +00:00
#cfg_timezone='Europe/Moscow'
# Early fsck, if you don't have such a step in your initrd
cfg_early_fsck=1
# Services that start with @ are executed in parallel
cfg_services+=(
'mount' 'sysctl' 'rsyslogd'
2015-10-26 16:16:18 +00:00
'@lo.iface' '@scron' @agetty-tty{2..6}
)
2014-08-09 10:59:12 +00:00
# Uncomment and add modules you want to be loaded at boot time here
2014-12-27 14:53:28 +00:00
#cfg_modules=( )
2014-08-09 10:59:12 +00:00
# Make C-A-D perform a soft reset
ctrlaltdel soft
# Virtual filesystems
cfg_mounts=(
'run:tmpfs:/run'
'tmp:tmpfs:/tmp'
2015-09-01 10:02:18 +00:00
2015-10-14 07:03:58 +00:00
'proc:proc:/proc:defaults,hidepid=2'
'sys:sysfs:/sys'
2015-09-01 10:02:18 +00:00
'dev:devtmpfs:/dev'
'pts:devpts:/dev/pts:noexec,nosuid,gid=5,mode=0620'
'mqueue:mqueue:/dev/mqueue:noexec,nosuid,nodev'
'shm:tmpfs:/dev/shm:defaults,mode=0777'
)
# Some temporary directories and files
cfg_tmpdirs+=( '/run/lock' '/run/lock/lvm' '/run/lvm' '/run/user' )
cfg_tmpfiles+=( '/run/utmp' )
2016-03-29 13:23:55 +00:00
# How long do we wait for all processes to die nicely?
cfg_killall5_timeout=30