mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

39 lines
416 B

#!/bin/bash
. scripts/functions
[ -e .config ] && . .config
quit=0
while [ "${quit}" == "0" ] ; do
menu_init
. scripts/configuration
clear
display
read -p "Enter your choice> " choice
case "${choice}" in
q)
quit=1
;;
s)
save
;;
l)
load
;;
c)
save
scripts/create_lvp
;;
x)
scripts/cleanup
;;
i)
scripts/create-iso
;;
*)
get ${choice}
;;
esac
done