3e63d1dd37
Apply diff anaconda-20.25.16-1..anaconda-21.48.21-1
11 lines
234 B
Bash
11 lines
234 B
Bash
#!/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
|
|
start_driver_update "Network Driver Update Disk"
|
|
rm -rf /tmp/DD-net
|
|
fi
|