summaryrefslogtreecommitdiffstats
path: root/modules.d/90dmsquash-live-autooverlay/module-setup.sh
blob: a97ca5a19f77619ec36cb88943d5ee11a201ff06 (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
#!/bin/bash

check() {
    # including a module dedicated to live environments in a host-only initrd doesn't make sense
    [[ $hostonly ]] && return 1
    return 255
}

depends() {
    echo dmsquash-live
    return 0
}

installkernel() {
    instmods btrfs ext4 xfs
}

install() {
    inst_multiple awk blkid cat grep mkdir mount parted readlink rmdir tr umount
    inst_multiple -o mkfs.btrfs mkfs.ext4 mkfs.xfs
    inst_hook pre-udev 25 "$moddir/create-overlay-genrules.sh"
    inst_script "$moddir/create-overlay.sh" "/sbin/create-overlay"
    dracut_need_initqueue
}