blob: 274071dc510277d4796b9cba9b94dc7d545e9175 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/bin/bash
# fetch-kickstart-net - fetch kickstart file from the network.
# runs from the "initqueue/online" hook whenever a net interface comes online
# initqueue/online hook passes interface name as $1
netif="$1"
# we already processed the kickstart - exit
[ -e /tmp/ks.cfg.done ] && return 0
# no kickstart requested - exit
[ -n "$kickstart" ] || return 0
# user requested a specific device, but this isn't it - exit
[ -n "$ksdevice" ] && [ "$ksdevice" != "$netif" ] && return 0
# no ksdevice was requested, so the first device online wins!
[ -z "$ksdevice" ] && ksdevice="$netif"
command -v getarg >/dev/null || . /lib/dracut-lib.sh
. /lib/url-lib.sh
. /lib/anaconda-lib.sh
if [ "$kickstart" = "nfs:auto" ]; then
# construct kickstart URL from dhcp info
# server is next_server, or the dhcp server itself if missing
. /tmp/net.$netif.dhcpopts
server="${new_dhcp_next_server:-$new_dhcp_server_identifier}"
# filename is dhcp 'filename' option, or '/kickstart/' if missing
filename="/kickstart/"
# read the dhcp lease file and see if we can find 'filename'
{ while read line; do
val="${line#filename }"
if [ "$val" != "$line" ]; then
eval "filename=$val" # drop quoting and semicolon
fi
done
} < /tmp/net.$netif.lease
# filename is appended with '$IP_ADDR-kickstart' if ending in '/'
if [ "${filename%/}" != "$filename" ]; then
filename="${filename}${new_ip_address}-kickstart"
fi
kickstart="nfs:$server:$filename"
fi
info "anaconda fetching kickstart from $kickstart"
if fetch_url "$kickstart" /tmp/ks.cfg; then
parse_kickstart /tmp/ks.cfg
run_kickstart
else
warn "failed to fetch kickstart from $kickstart"
fi
|