3 Commits
1.8.4 ... 1.8.5

Author SHA1 Message Date
fbt
1d5e825201 a huge oops 2015-10-26 19:16:18 +03:00
fbt
15592c0daa this should be a decent default 2015-10-14 10:03:58 +03:00
fbt
e379e8efff set the locale in rc.conf 2015-10-13 11:23:10 +03:00

View File

@@ -1,6 +1,9 @@
# System-wide configuration # A default PATH
export PATH='/usr/local/bin:/usr/local/sbin:/usr/bin' export PATH='/usr/local/bin:/usr/local/sbin:/usr/bin'
# Locale
export LC_ALL='en_US.UTF-8'
# Hostname # Hostname
cfg_hostname='spark' cfg_hostname='spark'
@@ -11,7 +14,7 @@ cfg_hostname='spark'
# Services that start with @ are executed in parallel # Services that start with @ are executed in parallel
cfg_services+=( cfg_services+=(
'fsck' 'mount' 'sysctl' 'rsyslogd' 'fsck' 'mount' 'sysctl' 'rsyslogd'
'@lo.iface' '@scron' '@agetty-tty{2..6}' '@lo.iface' '@scron' @agetty-tty{2..6}
) )
# Uncomment and add modules you want to be loaded at boot time here # Uncomment and add modules you want to be loaded at boot time here
@@ -25,7 +28,7 @@ cfg_mounts=(
'run:tmpfs:/run' 'run:tmpfs:/run'
'tmp:tmpfs:/tmp' 'tmp:tmpfs:/tmp'
'proc:proc:/proc' 'proc:proc:/proc:defaults,hidepid=2'
'sys:sysfs:/sys' 'sys:sysfs:/sys'
'dev:devtmpfs:/dev' 'dev:devtmpfs:/dev'