24 lines
476 B
Bash
Executable File
24 lines
476 B
Bash
Executable File
#!/bin/bash
|
|
# module-setup for img-lib
|
|
|
|
check() {
|
|
for cmd in tar gzip dd; do
|
|
command -v $cmd >/dev/null || return 1
|
|
done
|
|
return 255
|
|
}
|
|
|
|
depends() {
|
|
return 0
|
|
}
|
|
|
|
install() {
|
|
# NOTE/TODO: we require bash, but I don't know how to specify that..
|
|
dracut_install tar gzip dd
|
|
dracut_install -o cpio xz
|
|
# TODO: make this conditional on a cmdline flag / config option
|
|
dracut_install -o bzip2
|
|
inst "$moddir/img-lib.sh" "/lib/img-lib.sh"
|
|
}
|
|
|