Add Debian 11 scripts

This commit is contained in:
2023-11-19 23:04:42 +01:00
parent d496861741
commit 8b08184b54
35 changed files with 1991 additions and 0 deletions

View File

@@ -243,6 +243,7 @@ ClevisNetInit() {
done
IFS=$IFS_ORIG
DEV=$(whiptail --title "Select root LUKS part" --menu "" 0 0 0 "${options[@]}" 3>&1 1>&2 2>&3)
# shellcheck disable=SC2181
if [ "$?" = "0" ]; then
TANGURL=$(whiptail --title "Tang Server" --inputbox "URL" 0 30 "" 3>&1 1>&2 2>&3)
if [ "$?" = "0" ]; then
@@ -341,4 +342,12 @@ Reboot() {
fi
}
while [ ${#} -gt 0 ]; do
case ${1} in
--help) showHelp; exit 0;;
-b | --base-url) BASE_URL="${2}"; shift;;
*) shift;;
esac
done
Main