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

  1. #!/bin/bash
  2. . scripts/functions
  3. [ -e .config ] && . .config
  4. quit=0
  5. while [ "${quit}" == "0" ] ; do
  6. menu_init
  7. . scripts/configuration
  8. clear
  9. display
  10. read -p "Enter your choice> " choice
  11. case "${choice}" in
  12. q)
  13. quit=1
  14. ;;
  15. s)
  16. save
  17. ;;
  18. l)
  19. load
  20. ;;
  21. c)
  22. save
  23. scripts/create_lvp
  24. ;;
  25. x)
  26. scripts/cleanup
  27. ;;
  28. i)
  29. scripts/create_iso
  30. ;;
  31. *)
  32. get ${choice}
  33. ;;
  34. esac
  35. done