X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=grml-debootstrap;h=cc19118d6302fec08da089567c2c474b8efa0954;hp=ef7f44211a4f33d95b4af5003add5fe23ad3730f;hb=34feb28a67c0ce427974b059fa53e522bb095252;hpb=2932aafa464452ef006987efb4f47c2da8645d07 diff --git a/grml-debootstrap b/grml-debootstrap index ef7f442..cc19118 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -102,6 +102,36 @@ fi # cmdline handling {{{ # source external command line parameter-processing script . $prog_real.clp + +[ "$_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_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_help" ] && { + usage ; eend 0 + eend 0 + exit 0 +} + +[ "$_opt_version" ] && { + einfo "$PN - version $VERSION" + einfo "Send bug reports to bugs@grml.org or http://grml.org/bugs/" + eend 0 + exit 0 +} # }}} # welcome screen {{{