diff --git a/Docs/docs/User-MainInfo.md b/Docs/docs/User-MainInfo.md index c8ffaa9..30c8aec 100644 --- a/Docs/docs/User-MainInfo.md +++ b/Docs/docs/User-MainInfo.md @@ -1,26 +1,37 @@ # Getting/using the Normal installer (installer.sh): +Using curl ``` -#Get installer.sh from the repo and store it at: /tmp/installer.sh +curl https://git.ictmaatwerk.com/VPS-scripts/Web-V2/raw/branch/master/installer.sh -o /tmp/installer.sh +bash /tmp/installer.sh +``` + +Using wget +``` +wget https://git.ictmaatwerk.com/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 ``` -#Get installer.sh from the repo and store it at: /tmp/installer.sh +curl https://git.ictmaatwerk.com/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.ictmaatwerk.com/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. ``` -#Get the AppendCMS.sh from the repo and store it at: /tmp/AppendCMS.sh -bash /tmp/AppendCMS.sh +bash <(curl --retry 7 --retry-delay 5 -s https://git.ictmaatwerk.com/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 ``` -#Get the AppendCMS.sh from the repo and store it at: /tmp/AppendModule.sh -bash /tmp/AppendModule.sh +bash <(curl --retry 7 --retry-delay 5 -s https://git.ictmaatwerk.com/VPS-scripts/Web-V2/raw/branch/master/AppendModule.sh) ``` \ No newline at end of file diff --git a/README.md b/README.md index 82c33a2..ce86ee3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Web-V2 -**Get Started with the graphical installer**: +## Geting started +**Default/Graphical installer**: Using curl ``` curl https://git.ictmaatwerk.com/VPS-scripts/Web-V2/raw/branch/master/installer.sh -o /tmp/installer.sh @@ -24,6 +25,15 @@ Using wget wget https://git.ictmaatwerk.com/VPS-scripts/Web-V2/raw/branch/master/installer.sh -O /tmp/installer.sh bash /tmp/installer.sh -l 2>&1 | tee ~/output.log ``` +## Adding extra CMS/Site after instalation +``` +bash <(curl --retry 7 --retry-delay 5 -s https://git.ictmaatwerk.com/VPS-scripts/Web-V2/raw/branch/master/AppendCMS.sh) +``` + +## Adding extra Module after instalation +``` +bash <(curl --retry 7 --retry-delay 5 -s https://git.ictmaatwerk.com/VPS-scripts/Web-V2/raw/branch/master/AppendModule.sh) +``` ### This script uses the following repo's as dependencies: ```