14 lines
393 B
Bash
Executable file
14 lines
393 B
Bash
Executable file
run_hook ()
|
|
{
|
|
msg ":: Suche USB-Stick nach entsperrung des Systems!"
|
|
if blkid -s PARTUUID -o value | grep %USB_UUID% > /dev/null; then
|
|
msg ":: USB-Stick gefunden fahre mit starten des Systems weiter!"
|
|
else
|
|
msg ":: USB-Stick konnte nicht zur entsperrung gefunden werden!"
|
|
launch_interactive_shell
|
|
fi
|
|
|
|
msg ":: done."
|
|
}
|
|
|
|
# vim: set ft=sh ts=4 sw=4 et:
|