|
root / base / usr / src / zyginit / services / crypto / start.sh
start.sh Bash 14 lines 328 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#!/bin/zsh
# crypto — configure the Kernel Cryptographic Framework
#
# The kernel crypto framework is loaded at boot via kcf module; this
# oneshot applies userland configuration (kcfd persistent state).
# cryptoadm refresh reloads the kernel policy from /etc/crypto/*.conf

set -e
set -u

/usr/sbin/cryptoadm refresh

exit 0