This commit is contained in:
Patrick Schleizer 2022-06-29 15:51:14 -04:00
parent af8b211c23
commit 2a8504cf1b
No known key found for this signature in database
GPG key ID: CB8D50BB77BB3C48
3 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,33 @@
#!/bin/bash
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh
## Copyright (C) 2022 - 2022 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
## See the file COPYING for copying conditions.
# called by dracut
check() {
require_binaries sleep || return 1
require_binaries dmsetup || return 1
require_binaries sdmem || return 1
return 0
}
# called by dracut
depends() {
return 0
}
# called by dracut
install() {
inst_multiple sleep
inst_multiple sdmem
inst_multiple dmsetup
inst_hook shutdown 40 "$moddir/wipe.sh"
inst_hook cleanup 80 "$moddir/wipe-needshutdown.sh"
}
# called by dracut
installkernel() {
return 0
}