# Getting/using the Normal installer (installer.sh): Using curl ``` curl https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/installer.sh -o /tmp/installer.sh bash /tmp/installer.sh ``` Using wget ``` wget https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/installer.sh -O /tmp/installer.sh bash /tmp/installer.sh ``` # Getting/using the Legacy installer (installer.sh): Using curl ``` curl https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/installer.sh -o /tmp/installer.sh bash /tmp/installer.sh -l 2>&1 | tee ~/output.log ``` Using wget ``` wget https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/installer.sh -O /tmp/installer.sh bash /tmp/installer.sh -l 2>&1 | tee ~/output.log ``` # Adding a Domain (AppendCMS.sh): The script wil get most information it need from stored config, only the new domain and the mysql root password need to be entered. ``` bash <(curl --retry 7 --retry-delay 5 -s https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/AppendCMS.sh) ``` # Adding a Module/Option (AppendModule.sh): The script wil get most information it need from stored config ``` bash <(curl --retry 7 --retry-delay 5 -s https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/AppendModule.sh) ```