SW: add f2fs-tools to GRML_SMALL + GRML_FULL
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 38-udev
index 0cad436..d5c89d1 100755 (executable)
@@ -1,5 +1,5 @@
-#!/bin/sh
-# Filename:      /etc/grml/fai/config/scripts/GRMLBASE/38-udev
+#!/bin/bash
+# Filename:      ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/38-udev
 # Purpose:       configure udev of live-system
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
@@ -9,9 +9,6 @@
 set -u
 set -e
 
-[ -r /etc/grml/grml-live.conf ]  && . /etc/grml/grml-live.conf
-[ -r /etc/grml/grml-live.local ] && . /etc/grml/grml-live.local
-
 CONFFILE="$target/etc/udev/rules.d/70-persistent-net.rules"
 STRING='This file was automatically generated by the /lib/udev/write_net_rules'
 
@@ -19,10 +16,14 @@ 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 #################################################################
-# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3
+# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2