blob: 3bad65481ac7b310afcdb6b140de0718c4412fc0 (
plain) (
tree)
|
|
#!/usr/bin/env bash
check() {
# Tell dracut that this module should only be included if it is required
# explicitly.
return 255
}
depends() {
echo base
}
install() {
inst_hook pre-mount 50 "$moddir/scripts/gen-resolv-conf.sh"
}
|