summaryrefslogtreecommitdiffstats
path: root/modules.d/copy-initrd/module-setup.sh
blob: 050a84e32b7269e9e0fee2ec9a6429f873a108ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
check() {
    # only if requested
    return 255
}
depends() {
    echo base bash
}
install() {
    inst_hook pre-pivot 00 \
        "$moddir/hooks/copy-initramfs-into-newroot.sh"
}