diff options
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | dieter/procedures/automatic | 10 | ||||
-rw-r--r-- | src/core/procedures/interactive-DRAFT | 2 |
3 files changed, 13 insertions, 3 deletions
@@ -77,7 +77,9 @@ of dependencies) If you need a library from another user contributed module, execute 'depend_module <modulename>' for each module. This way you load all the -libs of that module (not the procedures, use depend_procedure for that) +libs of that module (not the procedures, use depend_procedure for that. +keep in mind that the position of the depend_procedure statement defines +where your variables/functions might be overridden...) (very basic dependencies, no version checking etc) You can specify a core procedure on the command line by specifying diff --git a/dieter/procedures/automatic b/dieter/procedures/automatic index 63fe6c8..360d642 100644 --- a/dieter/procedures/automatic +++ b/dieter/procedures/automatic @@ -1,7 +1,8 @@ #!/bin/bash -var_RUNTIME_PACKAGES="svn" depend_procedure core base +var_RUNTIME_PACKAGES="svn" + phase_preparation () { # All things that need to be done manually first @@ -74,6 +75,13 @@ worker_configure_home () } +worker_set_clock () +{ + #timezone="Europe/Brussels" + #Not doing anything. hwclock is set already and configs are coming from svn anyway.. + true +} + worker_install_bootloader () { install-grub /dev/sda diff --git a/src/core/procedures/interactive-DRAFT b/src/core/procedures/interactive-DRAFT index c4faaaa..1a5eb09 100644 --- a/src/core/procedures/interactive-DRAFT +++ b/src/core/procedures/interactive-DRAFT @@ -100,7 +100,7 @@ mainmenu() echo "" exit 0 ;; *) - DIALOG --yesno "Abort Installation?" 6 40 && exit 0 + ask_yesno "Abort Installation?" && exit 0 ;; esac } |