22 lines
427 B
Bash
Executable File
22 lines
427 B
Bash
Executable File
#!/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"
|
|
}
|