summaryrefslogtreecommitdiffstats
path: root/modules.d/99img-lib/module-setup.sh
blob: 4f57b37f66a3a103e773dfa11373794ae00e17f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
# module-setup for img-lib

# called by dracut
check() {
    require_binaries tar gzip dd echo tr || return 1
    return 255
}

# called by dracut
depends() {
    return 0
}

# called by dracut
install() {
    inst_multiple tar gzip dd echo tr rmdir
    # TODO: make this conditional on a cmdline flag / config option
    inst_multiple -o cpio xz bzip2 zstd
    inst_simple "$moddir/img-lib.sh" "/lib/img-lib.sh"
}