This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tsg-tsg-os-buildimage/ansible/roles/system-init/files/module-setup.sh
2024-05-16 11:42:02 +00:00

19 lines
214 B
Bash

#!/bin/bash
# Called by dracut
check() {
return 0
}
# Called by dracut
depends() {
echo rootfs-block
return 0
}
# Called by dracut
install() {
inst_hook pre-mount 99 "$moddir/overlaymount.sh"
}