X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fhooks%2Finstsoft.GRMLBASE;h=c7873344e7fe3244e90cf35c5d298dbda0e394e7;hp=cf8c3be6fccfe904f3b577a70bbef33212a4518a;hb=6c00c3c1fd1e3fee0d10c1f1b4f6257d21d663d9;hpb=1e9092e9b8d1f13b9c26dc2c0d1e6b49c9e4d15b diff --git a/etc/grml/fai/config/hooks/instsoft.GRMLBASE b/etc/grml/fai/config/hooks/instsoft.GRMLBASE index cf8c3be..c787334 100755 --- a/etc/grml/fai/config/hooks/instsoft.GRMLBASE +++ b/etc/grml/fai/config/hooks/instsoft.GRMLBASE @@ -21,7 +21,7 @@ if [ "$FAI_ACTION" = "softupdate" ] ; then echo "Action $FAI_ACTION of FAI (hooks/instsoft.GRMLBASE) via grml-live running" if [ -r /etc/resolv.conf ] ; then - if [ -d $target/etc/resolvconf/run ] ; then # resolvconf + if [ -d $target/etc/resolvconf/run ] ; then # resolvconf without /run # sanity check to avoid "input file is output file", # see http://bts.grml.org/grml/issue984 if ! [ -L $target/etc/resolvconf/run/resolv.conf ] ; then @@ -31,6 +31,10 @@ if [ "$FAI_ACTION" = "softupdate" ] ; then echo " Looks like something is wrong, please fix manually." >&2 exit 1 fi + elif [ -L $target/etc/resolvconf/run ] ; then # resolvconf with /run + # /etc/resolvconf/run symlinks to /run/resolvconf + mkdir -p $target/run/resolvconf + cat /etc/resolv.conf >> $target/run/resolvconf/resolv.conf else # no resolvconf installed in chroot if ! [ -L $target/etc/resolv.conf ] ; then cat /etc/resolv.conf >> $target/etc/resolv.conf @@ -153,4 +157,4 @@ if [ -L "$target"/usr/sbin/invoke-rc.d ] ; then fi ## END OF FILE ################################################################# -# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3 +# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2