mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-01-14 02:59:27 -05:00
improve usr/lib/dracut/modules.d/40sdmem-security-misc/module-setup.sh
This commit is contained in:
parent
29253004b6
commit
024d52a67e
@ -2,18 +2,25 @@
|
|||||||
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
||||||
# ex: ts=8 sw=4 sts=4 et filetype=sh
|
# ex: ts=8 sw=4 sts=4 et filetype=sh
|
||||||
|
|
||||||
|
# called by dracut
|
||||||
check() {
|
check() {
|
||||||
|
require_binaries dmsetup || return 1
|
||||||
|
require_binaries sdmem || return 1
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# called by dracut
|
||||||
depends() {
|
depends() {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# called by dracut
|
||||||
install() {
|
install() {
|
||||||
|
inst $(command -v sdmem) /bin/sdmem
|
||||||
inst_hook shutdown 40 "$moddir/wipe.sh"
|
inst_hook shutdown 40 "$moddir/wipe.sh"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# called by dracut
|
||||||
installkernel() {
|
installkernel() {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user