summaryrefslogtreecommitdiff
path: root/src/core/procedures
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2009-07-27 22:50:36 +0200
committerDieter Plaetinck <dieter@plaetinck.be>2009-07-27 22:50:36 +0200
commit81f47f128b0301080cf3a7132aef2def4c7c8539 (patch)
tree619e457cec9e0d981f2fa602bc878e6c658a7af4 /src/core/procedures
parentee45c789d7ba4f3aad9d6837bde79cbcb9157d78 (diff)
separate automatic prefilling of configs with manual editing + enable automatic config updating and grub menu.lst generation in automatic installs
Diffstat (limited to 'src/core/procedures')
-rw-r--r--src/core/procedures/automatic7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/procedures/automatic b/src/core/procedures/automatic
index 58911ff..80aecfc 100644
--- a/src/core/procedures/automatic
+++ b/src/core/procedures/automatic
@@ -55,6 +55,8 @@ worker_configure ()
var_GRUB_DEVICE=$GRUB_DEVICE
var_PARTITIONS=$PARTITIONS
var_BLOCKDATA=$BLOCKDATA
+ HARDWARECLOCK=${HARDWARECLOCK:-localtime}
+ TIMEZONE=${TIMEZONE:-Canada/Pacific}
}
worker_select_source ()
@@ -124,7 +126,12 @@ worker_auto_network () {
}
+worker_configure_system () {
+ prefill_configs
+}
+
worker_install_bootloader ()
{
grub-install $var_GRUB_DEVICE --root-directory=/mnt
+ generate_grub_menulst
}