2014-04-07 12:38:09 +00:00
|
|
|
#!/bin/sh
|
|
|
|
[ -e /tmp/DD-net ] || return 0
|
|
|
|
|
|
|
|
command -v getarg >/dev/null || . /lib/dracut-lib.sh
|
|
|
|
. /lib/anaconda-lib.sh
|
|
|
|
|
|
|
|
if [ -n "$(ls /tmp/DD-net)" ]; then
|
2015-03-23 11:36:12 +00:00
|
|
|
start_driver_update "Network Driver Update Disk"
|
2014-04-07 12:38:09 +00:00
|
|
|
rm -rf /tmp/DD-net
|
|
|
|
fi
|