mirror of
https://github.com/Kicksecure/security-misc.git
synced 2024-12-11 22:04:24 -05:00
29 lines
510 B
Bash
Executable File
29 lines
510 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Copyright (C) 2023 - 2023 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
|
|
## See the file COPYING for copying conditions.
|
|
|
|
# called by dracut
|
|
check() {
|
|
require_binaries mount || return 1
|
|
require_binaries remount-secure || return 1
|
|
return 0
|
|
}
|
|
|
|
# called by dracut
|
|
depends() {
|
|
return 0
|
|
}
|
|
|
|
# called by dracut
|
|
install() {
|
|
inst_multiple mount
|
|
inst_multiple remount-secure
|
|
inst_hook cleanup 90 "$moddir/remount-secure.sh"
|
|
}
|
|
|
|
# called by dracut
|
|
installkernel() {
|
|
return 0
|
|
}
|