diff options
Diffstat (limited to 'system/s6-linux-init/dracut_module.sh')
-rwxr-xr-x | system/s6-linux-init/dracut_module.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/system/s6-linux-init/dracut_module.sh b/system/s6-linux-init/dracut_module.sh new file mode 100755 index 000000000..106025ca7 --- /dev/null +++ b/system/s6-linux-init/dracut_module.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +# called by dracut +check() { + return 0 +} + +# called by dracut +depends() { + return 0 +} + +# called by dracut +install() { + inst /bin/s6-linux-init-hpr +} + |