43 lines
942 B
Plaintext
43 lines
942 B
Plaintext
# A default PATH
|
|
export PATH='/usr/local/bin:/usr/local/sbin:/usr/bin'
|
|
|
|
# Locale
|
|
export LC_ALL='en_US.UTF-8'
|
|
|
|
# Hostname
|
|
cfg_hostname='spark'
|
|
|
|
# Timezone
|
|
# Uncomment and change this to yours
|
|
#cfg_timezone='Europe/Moscow'
|
|
|
|
# Services that start with @ are executed in parallel
|
|
cfg_services+=(
|
|
'fsck' 'mount' 'sysctl' 'rsyslogd'
|
|
'@lo.iface' '@scron' @agetty-tty{2..6}
|
|
)
|
|
|
|
# Uncomment and add modules you want to be loaded at boot time here
|
|
#cfg_modules=( )
|
|
|
|
# Make C-A-D perform a soft reset
|
|
ctrlaltdel soft
|
|
|
|
# Virtual filesystems
|
|
cfg_mounts=(
|
|
'run:tmpfs:/run'
|
|
'tmp:tmpfs:/tmp'
|
|
|
|
'proc:proc:/proc:defaults,hidepid=2'
|
|
'sys:sysfs:/sys'
|
|
|
|
'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' )
|