summaryrefslogtreecommitdiffstats
path: root/dracut/anaconda-netroot.sh
blob: 62179535c6846cae923f56c6f366561543f6c58b (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/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

# initqueue/online hook passes interface name as $1
netif="$1"

# 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:}
        # HACK: work around some Mysterious NFS4 Badness (#811242 and friends)
        # by defaulting to nfsvers=3 when no version is requested
        nfs_to_var $repo $netif
        if [ "$nfs" != "nfs4" ] && ! strstr "$options" "vers="; then
            repo="nfs:$options,nfsvers=3:$server:$path"
        fi
        # END HACK. FIXME: Figure out what is up with nfs4, jeez
        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 "$treeinfo" -o -z "$stage2" ]; then
            warn "can't find installer mainimage path in .treeinfo"
            stage2="LiveOS/squashfs.img"
        fi
        if runtime=$(fetch_url $repo/$stage2); then
            # NOTE: Should be the same as anaconda_auto_updates()
            updates=$(fetch_url $repo/images/updates.img)
            [ -n "$updates" ] && unpack_updates_img $updates /updates
            product=$(fetch_url $repo/images/product.img)
            [ -n "$product" ] && unpack_updates_img $product /updates
            /sbin/dmsquash-live-root $runtime
        fi
    ;;
    *)
        warn "unknown network repo URL: $repo"
        return 1
    ;;
esac