diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-01 16:36:01 +0100 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-01 16:36:01 +0100 |
commit | fc3a5409fbddaa8f1093eecbbe16803d97a3e4f1 (patch) | |
tree | 26e8e8f217e2dd0fff9a9ab183fcde9f4206a46f | |
parent | 2ce56eccb5e0e62c8a98e2710922e96110f9581c (diff) |
ask_yesno bugfix + todos added
-rw-r--r-- | src/profiles/profile-dieter | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/profiles/profile-dieter b/src/profiles/profile-dieter index a8c9cba..6bd4dda 100644 --- a/src/profiles/profile-dieter +++ b/src/profiles/profile-dieter @@ -5,7 +5,7 @@ phase_preparation () { # All things that need to be done manually first notify "A few manual things need to happen first..." - if `ask_yesno "Do you want to (re)-configure your networking?"` + if ask_yesno "Do you want to (re)-configure your networking?" then donetwork #configure network by using library else @@ -26,7 +26,11 @@ phase_preparation () worker_prepare_disks () { - #TODO : use existing functions to do this + fix encryption and stuff + #TODO: fix all this, using the libs + #cfdisk + #encrypt lvm + #make fs + #mount, where? /mnt? true } @@ -47,4 +51,3 @@ worker_install_bootloader () { install-grub /dev/sda } - |