blob: 7b8f21dad1932739429e30bca80f8f30c8bd8c12 (
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
# network root script for anaconda.
# runs in the "online" hook, every time an interface comes online.
command -v getarg >/dev/null || . /lib/dracut-lib.sh
# get repo info
splitsep ":" "$root" prefix repo
# no repo? non-net root? we're not needed here.
[ "$prefix" = "anaconda-net" ] && [ -n "$repo" ] || return 0
# already done? don't run again.
[ -e /dev/root ] && return 0
# user requested a specific network device, but this isn't it - bail out
[ -n "$ksdevice" ] && [ "$ksdevice" != "$netif" ] && return 0
# user didn't request a specific device, so the first one online wins!
[ -z "$ksdevice" ] && ksdevice="$netif"
command -v config_get >/dev/null || . /lib/anaconda-lib.sh
case $repo in
nfs*)
. /lib/nfs-lib.sh
info "anaconda mounting NFS repo at $repo"
str_starts "$repo" "nfsiso:" && repo=nfs:${repo#nfsiso:}
if [ "${repo%.iso}" == "$repo" ]; then
mount_nfs "$repo" "$repodir" "$netif" || warn "Couldn't mount $repo"
anaconda_live_root_dir $repodir
else
iso="${repo##*/}"
mount_nfs "${repo%$iso}" "$repodir" "$netif" || \
warn "Couldn't mount $repo"
anaconda_live_root_dir $repodir $iso
fi
;;
http*|ftp*)
. /lib/url-lib.sh
info "anaconda fetching installer from $repo"
treeinfo=$(fetch_url $repo/.treeinfo) && \
stage2=$(config_get stage2 mainimage < $treeinfo)
if [ -z "$stage2" ]; then
warn "can't find installer mainimage path in .treeinfo"
stage2="LiveOS/squashfs.img"
fi
runtime=$(fetch_url $repo/$stage2) && /sbin/dmsquash-live-root $runtime
;;
*)
warn "unknown network repo URL: $repo"
return 1
;;
esac
|