X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=autoconfig.functions;h=f40d45c2a0fc9e22362d7b1679c47e1d56fe77f6;hp=fe4caf5fd57cad94388a85f72cb5130de379f41a;hb=b29ec58531e9db4eafcd93a84e94b28800f01327;hpb=8c5bbfd9c98a8ab7cbc78911d18aca5377b64d42 diff --git a/autoconfig.functions b/autoconfig.functions index fe4caf5..f40d45c 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -4,7 +4,7 @@ # Authors: grml-team (grml.org), (c) Klaus Knopper , (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Mit Jul 11 19:34:06 CEST 2007 [mika] +# Latest change: Don Jul 12 15:33:48 CEST 2007 [mika] ################################################################################ # {{{ path, variables, signals, umask, zsh @@ -1169,6 +1169,10 @@ else sleep 1 eend 0 done + if [ -n "$INSTALLED" ] ; then + ewarn 'If you want to disable automatic DHCP requests set CONFIG_DHCP=no in /etc/grml/autoconfig.' + eend 0 + fi fi } # }}} @@ -1525,11 +1529,10 @@ if checkbootparam "nomodem"; then ewarn "Skipping check for AC97 modem controller as requested on boot commandline." ; eend 0 else if [ -x /etc/init.d/sl-modem-daemon ] ; then - if lspci | grep Intel | grep -q "AC'97 Modem Controller" ; then - einfo "AC97 modem controller detected. Starting sl-modem-daemon in background." - /etc/init.d/sl-modem-daemon start >>$DEBUG & - eend 0 - fi + if lspci | grep Intel | grep -q "AC'97 Modem Controller" ; then + einfo "AC97 modem controller detected. Start it running 'Start sl-modem-daemon'." + eend 0 + fi fi fi }