This commit is contained in:
Patrick Schleizer 2023-10-22 10:10:51 -04:00
parent 4f6f45fb39
commit bb57b1a289
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -5,6 +5,8 @@
# called by dracut
check() {
require_binaries grep || return 1
require_binaries id || return 1
require_binaries mount || return 1
require_binaries remount-secure || return 1
return 0
@ -17,6 +19,8 @@ depends() {
# called by dracut
install() {
inst_multiple grep
inst_multiple id
inst_multiple mount
inst_multiple remount-secure
inst_hook cleanup 90 "$moddir/remount-secure.sh"