From 5bd943eb903d737ec5015ee92538c51ef6946c0d Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Wed, 8 Apr 2020 14:39:27 +0200 Subject: [PATCH] Add 'ModulesMenu.list' --- ModulesMenu.list | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 ModulesMenu.list diff --git a/ModulesMenu.list b/ModulesMenu.list new file mode 100644 index 0000000..4b7a026 --- /dev/null +++ b/ModulesMenu.list @@ -0,0 +1,43 @@ +##----------------## +# Menu Entries # +##----------------## + +if [ $IMODE = n ]; then +#WebServers +webservers=("Nginx:" "Will install NGINX Webserver." ON) +webservers+=("Apache:" "Will install Apache Webserver." OFF) + +##Nginx +#CMSList +NginxCMSL=("None:" "A plain webserver will be setup." OFF) +NginxCMSL+=("Wordpress:" "WordPress is a content management system based on PHP." OFF) +NginxCMSL+=("Nextcloud:" "Nextcloud is a suite of client-server software for creating and using file hosting services." OFF) +#Options +NginxOptions=("Option 1:" "Option 1 Desription" OFF) +NginxOptions+=("Option 2:" "Option 2 Desription" OFF) +NginxOptions+=("Option 3:" "Option 3 Desription" OFF) + +##Apache +#CMSList +ApacheCMSL=("None:" "A plain webserver will be setup." OFF) +ApacheCMSL+=("Wordpress:" "WordPress is a content management system based on PHP." OFF) +#Options +ApacheOptions=("Option 1:" "Option 1 Desription" OFF) +ApacheOptions+=("Option 2: " "Option 2 Desription" OFF) +fi +if [ $IMODE = l ]; then +#WebServers +webservers=("Nginx" "Apache" "Quit") +##Nginx +#CMSList +NginxCMSL=("Wordpress" "Nextcloud" "None") +#Options +NginxOptions=("Ngx Option 1:" "Ngx Option 2:" "Ngx Option 3:") + + +##Apache +#CMSList +ApacheCMSL=("Wordpress" "Nextcloud" "None") +#Options +ApacheOptions=("Apa Option 1:" "Apa Option 2:" "Apa Option 3:") +fi \ No newline at end of file