Updates in install scripts

This commit is contained in:
root 2018-12-25 13:18:28 +01:00
parent 439b565cd9
commit 9e6dfd6d0b
3 changed files with 25 additions and 1 deletions

View file

@ -55,10 +55,17 @@ Thus, by running this script below, you agree with the Let's Encrypt's Terms of
```
2. Install git
For Centos 7 type:
```
yum install -y git
```
For Ubuntu 18.04 LTS type:
```
apt-get install -y git
```
3. Download Mailtrain using git to the `/opt/mailtrain` directory
```
cd /opt
@ -111,10 +118,17 @@ All endpoints (trusted, sandbox, public) will provide only HTTP as follows:
```
2. Install git
For Centos 7 type:
```
yum install -y git
```
For Ubuntu 18.04 LTS type:
```
apt-get install -y git
```
3. Download Mailtrain using git to the `/opt/mailtrain` directory
```
cd /opt

View file

@ -0,0 +1,11 @@
#!/bin/bash
set -e
hostType=ubuntu1804
SCRIPT_PATH=$(dirname $(realpath -s $0))
. $SCRIPT_PATH/functions
cd $SCRIPT_PATH/..
performInstallHttps "$#" "$1" "$2" "$3" "$4"

View file

@ -1,7 +1,6 @@
#!/bin/bash
set -e
set -x
hostType=ubuntu1804