Updates in install scripts
This commit is contained in:
parent
439b565cd9
commit
9e6dfd6d0b
3 changed files with 25 additions and 1 deletions
14
README.md
14
README.md
|
@ -55,10 +55,17 @@ Thus, by running this script below, you agree with the Let's Encrypt's Terms of
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Install git
|
2. Install git
|
||||||
|
|
||||||
|
For Centos 7 type:
|
||||||
```
|
```
|
||||||
yum install -y git
|
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
|
3. Download Mailtrain using git to the `/opt/mailtrain` directory
|
||||||
```
|
```
|
||||||
cd /opt
|
cd /opt
|
||||||
|
@ -111,10 +118,17 @@ All endpoints (trusted, sandbox, public) will provide only HTTP as follows:
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Install git
|
2. Install git
|
||||||
|
|
||||||
|
For Centos 7 type:
|
||||||
```
|
```
|
||||||
yum install -y git
|
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
|
3. Download Mailtrain using git to the `/opt/mailtrain` directory
|
||||||
```
|
```
|
||||||
cd /opt
|
cd /opt
|
||||||
|
|
11
setup/install-ubuntu1804-https.sh
Normal file
11
setup/install-ubuntu1804-https.sh
Normal 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"
|
|
@ -1,7 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
set -x
|
|
||||||
|
|
||||||
hostType=ubuntu1804
|
hostType=ubuntu1804
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue