You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
391 B

#!/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() {
inst_multiple tar gzip dd bash
# TODO: make this conditional on a cmdline flag / config option
inst_multiple -o cpio xz bzip2
inst_simple "$moddir/img-lib.sh" "/lib/img-lib.sh"
}