21 lines
246 B
Bash
21 lines
246 B
Bash
#!/bin/sh
|
|
|
|
PREREQ=""
|
|
|
|
prereqs()
|
|
{
|
|
echo $PREREQ
|
|
}
|
|
|
|
case $1 in
|
|
# get pre-requisites
|
|
prereqs)
|
|
prereqs
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
if [ -x /scripts/local-top/cryptroot ]; then
|
|
export CRYPTROOT_STAGE="local-block"
|
|
exec /scripts/local-top/cryptroot
|
|
fi
|