Changeset 3563 in MondoRescue for branches/3.0-mindi-2.1/mindi/rootfs/sbin/start-netfs
- Timestamp:
- Apr 11, 2016, 7:43:30 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0-mindi-2.1/mindi/rootfs/sbin/start-netfs
r3178 r3563 70 70 71 71 # If same system, map to the right MAC address 72 hwaddr_found=`ifconfig $ipdev | /bin/grep HWaddr | awk '{print $NF}'` 73 if [ "$hwaddr" != "$hwaddr_found" ]; then 74 ipdev_new=`ifconfig -a | /bin/grep $hwaddr | awk '{print $1}'` 75 if [ "$ipdev_new" != "" ]; then 76 LogIt "Interface $ipdev changed to $ipdev_new (MAC: $hwaddr)" 77 ipdev=$ipdev_new 78 else 79 LogIt "NOTE: Interface $ipdev kept despite it doesn't match the $hwaddr MAC address" 72 if [ "$hwaddr" != "" ]; then 73 hwaddr_found=`ifconfig $ipdev | grep HWaddr | awk '{print $NF}'` 74 if [ "$hwaddr" != "$hwaddr_found" ]; then 75 ipdev_new=`ifconfig -a | grep $hwaddr | awk '{print $1}'` 76 if [ "$ipdev_new" != "" ]; then 77 LogIt "Interface $ipdev changed to $ipdev_new (MAC: $hwaddr)" 78 ipdev=$ipdev_new 79 else 80 LogIt "NOTE: Interface $ipdev kept despite it doesn't match the $hwaddr MAC address" 81 fi 80 82 fi 81 83 fi … … 115 117 elif [ "$proto" = "smbfs" ]; then 116 118 LogIt "Mounting SMBFS share ($netfsmount) on /tmp/isodir..." 117 mount -t cifs $netfs opt $netfsmount /tmp/isodir -o ro119 mount -t cifs $netfsmount /tmp/isodir -o ro $netfsopt 118 120 elif [ "$proto" != "" ]; then 119 121 if [ -x /sbin/rpcbind ]; then 120 "Startng rpcbind daemon..."121 /sbin/rpcbind &122 echo "Starting rpcbind daemon..." 123 /sbin/rpcbind -w & 122 124 fi 123 125 LogIt "Mounting Network share ($netfsmount) on /tmp/isodir..."
Note:
See TracChangeset
for help on using the changeset viewer.