Replace tabs with spaces
[grml-debootstrap.git] / grml-debootstrap
index a08262a..761945d 100755 (executable)
@@ -129,25 +129,25 @@ fi
 }
 # }}}
 
-[ "$_opt_mirror" ]             && MIRROR=$_opt_mirror
-[ "$_opt_iso" ]                        && ISO=$_opt_iso
-[ "$_opt_release" ]            && RELEASE=$_opt_release
-[ "$_opt_target" ]             && TARGET=$_opt_target
-[ "$_opt_mntpoint" ]           && MNTPOINT=$_opt_mntpoint
-[ "$_opt_debopt" ]             && DEBOOTSTRAP_OPT=$_opt_debopt
-[ "$_opt_interactive" ]                && INTERACTIVE=1
-[ "$_opt_config" ]             && CONFIGFILE=$_opt_config
-[ "$_opt_packages_set" ]       && PACKAGES='yes'
-[ "$_opt_debconf_set" ]                && DEBCONF='yes'
+[ "$_opt_mirror" ]              && MIRROR=$_opt_mirror
+[ "$_opt_iso" ]                 && ISO=$_opt_iso
+[ "$_opt_release" ]             && RELEASE=$_opt_release
+[ "$_opt_target" ]              && TARGET=$_opt_target
+[ "$_opt_mntpoint" ]            && MNTPOINT=$_opt_mntpoint
+[ "$_opt_debopt" ]              && DEBOOTSTRAP_OPT=$_opt_debopt
+[ "$_opt_interactive" ]         && INTERACTIVE=1
+[ "$_opt_config" ]              && CONFIGFILE=$_opt_config
+[ "$_opt_packages_set" ]        && PACKAGES='yes'
+[ "$_opt_debconf_set" ]         && DEBCONF='yes'
 [ "$_opt_scripts_set" ]         && SCRIPTS='yes'
 [ "$_opt_chroot_scripts_set" ]  && CHROOT_SCRIPTS='yes'
-[ "$_opt_keep_src_list" ]      && KEEP_SRC_LIST='yes'
-[ "$_opt_hostname" ]           && HOSTNAME=$_opt_hostname
-[ "$_opt_password" ]           && ROOTPASSWORD=$_opt_password
-[ "$_opt_bootappend" ]         && BOOT_APPEND=$_opt_bootappend
-[ "$_opt_groot" ]              && GROOT=$_opt_groot
-[ "$_opt_grub" ]               && GRUB=$_opt_grub
-[ "$_opt_verbose" ]            && VERBOSE="-v"
+[ "$_opt_keep_src_list" ]       && KEEP_SRC_LIST='yes'
+[ "$_opt_hostname" ]            && HOSTNAME=$_opt_hostname
+[ "$_opt_password" ]            && ROOTPASSWORD=$_opt_password
+[ "$_opt_bootappend" ]          && BOOT_APPEND=$_opt_bootappend
+[ "$_opt_groot" ]               && GROOT=$_opt_groot
+[ "$_opt_grub" ]                && GRUB=$_opt_grub
+[ "$_opt_verbose" ]             && VERBOSE="-v"
 
 [ "$_opt_help" ] && {
   usage ; eend 0
@@ -425,6 +425,19 @@ fi
 }
 # }}}
 
+# user should recheck his configuration {{{
+# support full automatic installation:
+checkforrun() {
+   dialog --timeout 10 --title "$PN" \
+          --yesno "Do you want to stop at this stage?
+
+Notice: you are running ${PN} in non-interactive mode.
+${PN} will install Debian ${RELEASE} on ${TARGET}.
+Last chance to quit. Timeout of 10 seconds running....
+
+Do you want to stop now?" 0 0 2>/dev/null
+}
+
 # make sure the user is aware of the used configuration {{{
 checkconfiguration()
 {
@@ -510,8 +523,6 @@ interactive_mode()
   fi
 
   prompt_for_mirror
-
-  checkconfiguration
 }
 
 # run interactive mode if we didn't get the according configuration yet
@@ -522,6 +533,8 @@ if [ -z "$TARGET" -o -n "$INTERACTIVE" ] ; then
 fi
 # }}}
 
+checkconfiguration
+
 # finally make sure at least $TARGET is set [the partition for the new system] {{{
 if [ -n "$TARGET" ] ; then
    SHORT_TARGET="${TARGET##*/}"
@@ -643,19 +656,6 @@ stage() {
 }
 # }}}
 
-# user should recheck his configuration {{{
-# support full automatic installation:
-checkforrun() {
-   dialog --timeout 10 --title "$PN" \
-          --yesno "Do you want to stop at this stage?
-
-Notice: you are running ${PN} in non-interactive mode.
-${PN} will install Debian ${RELEASE} on ${TARGET}.
-Last chance to quit. Timeout of 10 seconds running....
-
-Do you want to stop now?" 0 0 2>/dev/null
-}
-
 # create filesystem {{{
 mkfs() {
   if [ -n "$MKFS" ] ; then