spark-rc/rc.conf

39 lines
966 B
Plaintext
Raw Normal View History

2014-08-09 10:59:12 +00:00
# System-wide configuration
export PATH='/usr/local/bin:/usr/local/sbin:/usr/bin'
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'
# Services that start with @ are executed in parallel
cfg_services+=(
'fsck' 'mount' 'sysctl' 'rsyslogd'
'@lo.iface' '@scron'
)
2014-08-09 10:59:12 +00:00
2014-12-27 14:53:28 +00:00
# Add modules you want to be loaded at boot time here
#cfg_modules=( )
2014-08-09 10:59:12 +00:00
# Make C-A-D perform a soft reset
ctrlaltdel soft
# Default virtual mounts for linux systems
cfg_mounts[proc]='proc:/proc'
cfg_mounts[run]='tmpfs:/run'
cfg_mounts[sys]='sysfs:/sys'
# devfs and its children
cfg_mounts[dev]='devtmpfs:/dev'
cfg_mounts[pts]='devpts:/dev/pts:noexec,nosuid,gid=5,mode=0620'
cfg_mounts[mqueue]='mqueue:/dev/mqueue:noexec,nosuid,nodev'
cfg_mounts[shm]='tmpfs:/dev/shm:defaults,mode=0777'
# Some temporary directories
cfg_tmpdirs+=( '/run/lock' '/run/lock/lvm' '/run/lvm' '/run/user' )
# And temporary files
cfg_tmpfiles+=( '/run/utmp' )