X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=autoconfig.functions;h=344929bcf7a9db1d894a2b5f703ab0b571581377;hp=e69b04144ca0606477c6574a3f717048efc63cf6;hb=refs%2Ftags%2F0.5-25;hpb=d3276380092a44e0e325f98b0d53d6ec342583d3 diff --git a/autoconfig.functions b/autoconfig.functions index e69b041..344929b 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -897,7 +897,7 @@ check_partitions 1>/dev/null 2>&1 # avoid output "check_partitions:3: read-only # }}} # {{{ Enable DMA for all IDE drives now if not disabled -# Notice: Already done by linuxrc, maybe not on hd-installations +# Notice: Already done by linuxrc, but make sure it's done also on harddisk-installed systems config_dma(){ if checkbootparam "nodma"; then ewarn "Skipping DMA accelleration as requested on boot commandline." ; eend 0 @@ -920,9 +920,9 @@ fi # {{{ Start creating /etc/fstab with HD partitions and USB SCSI devices now config_fstab(){ -NOSWAP="" -if checkbootparam "noswap" -o checkbootparam "forensic" ; then - NOSWAP="yes" +NOSWAP="yes" # we do not use swap by default! +if checkbootparam "swap" -o checkbootparam "anyswap" ; then + NOSWAP='' fi if checkbootparam "nofstab" -o checkbootparam "forensic" ; then @@ -943,8 +943,8 @@ else fi fi # Scan for swap, config, homedir -if [ -z "$NOSWAP" -o -z "$INSTALLED" ]; then - einfo "Checking for swap partition(s)." +if [ -z "$NOSWAP" ]; then + einfo "Searching for swap partition(s) as requested." fi GRML_IMG="" GRML_SWP="" @@ -1897,10 +1897,12 @@ config_swraid(){ eerror "mdadm not available, can not execute it." ; eend 1 else + # if ! egrep -qv '^(MAILADDR.*|#.*|)$' /etc/mdadm/mdadm.conf 2>>$DEBUG ; then + # find out whether we have a valid configuration file already if ! grep -q ARRAY /etc/mdadm/mdadm.conf 2>>$DEBUG ; then einfo "Creating /etc/mdadm/mdadm.conf" [ -r /etc/mdadm/mdadm.conf ] && mv /etc/mdadm/mdadm.conf /etc/mdadm/mdadm.conf.old - /usr/share/mdadm/mkconf > /etc/mdadm/mdadm.conf ; eend $? + MDADM_MAILADDR='root' /usr/share/mdadm/mkconf > /etc/mdadm/mdadm.conf ; eend $? else ewarn "/etc/mdadm/mdadm.conf looks like a configured mdadm setup, will not touch it." ; eend 0 fi