summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-11-02 23:17:38 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-11-02 23:17:38 +0100
commit6bc46356464aa650038b33172686f7acbfe3aba7 (patch)
tree3d6eaa0a47ec8af5df2c414288efc8442977cc7f
parent51c3e18910565ece5fdfeeec5d3673fb19035938 (diff)
runtime packages bugfix + some small stuff
-rw-r--r--README4
-rw-r--r--dieter/procedures/automatic10
-rw-r--r--src/core/procedures/interactive-DRAFT2
3 files changed, 13 insertions, 3 deletions
diff --git a/README b/README
index d1a8bef..47e1311 100644
--- a/README
+++ b/README
@@ -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
}