11 lines
200 B
Bash
11 lines
200 B
Bash
#!/bin/sh
|
|
#
|
|
# Initcpio hook script for remote LUKS unlocking in BusyBox
|
|
#
|
|
# By Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
|
|
|
|
run_hook() {
|
|
/usr/bin/luksrku client -v /etc/luksrku-client.bin
|
|
}
|
|
|