diff options
Diffstat (limited to 'src')
-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 } - |