This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
evolution-mklive/dracut/netmenu/netmenu.sh

19 lines
489 B
Bash
Executable File

#!/bin/sh
dialog --colors --keep-tite --no-shadow --no-mouse \
--backtitle "\Zb\Z7Void Linux installation -- https://www.voidlinux.org\Zn" \
--cancel-label "Reboot" --aspect 20 \
--menu "Select an Action:" 10 50 2 \
"Install" "Run void-installer" \
"Shell" "Run dash" \
2>/tmp/netmenu.action
if [ ! $? ] ; then
reboot -f
fi
case $(cat /tmp/netmenu.action) in
"Install") /usr/bin/void-installer ; exec sh ;;
"Shell") exec sh ;;
esac