X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F38-udev;h=a041632bc1e881bb9cea53884a322ce9c514f823;hp=0cad436d12c0fa394db89e414672694c1486d85a;hb=4c955a6b6838346bb44af4557891129e2016f9d0;hpb=f1addad57255c2cbc70ab830295ae4c0c7b9de6a diff --git a/etc/grml/fai/config/scripts/GRMLBASE/38-udev b/etc/grml/fai/config/scripts/GRMLBASE/38-udev index 0cad436..a041632 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/38-udev +++ b/etc/grml/fai/config/scripts/GRMLBASE/38-udev @@ -19,9 +19,13 @@ STRING='This file was automatically generated by the /lib/udev/write_net_rules' # Unknown net device (/devices/virtio-pci/virtio0/net/eth0) (virtio_net) # SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="XX:XX:XX:XX:XX:XX", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0" # so therefore remove such an automatically generated file instead. -if grep -q "$STRING" "$CONFFILE" ; then - echo "Automatically generated /etc/udev/rules.d/70-persistent-net.rules found, removing it." - rm -f "$CONFFILE" +if ! [ -r "$CONFFILE" ] ; then + echo "$CONFFILE does not exist, nothing to do." +else + if grep -q "$STRING" "$CONFFILE" ; then + echo "Automatically generated /etc/udev/rules.d/70-persistent-net.rules found, removing it." + rm -f "$CONFFILE" + fi fi ## END OF FILE #################################################################