diff --git a/README.md b/README.md index 6857492..ee76826 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Django Setup for CentOS 7 ## Quick Install ```bash -vim vars +vim vars ``` ```bash @@ -13,8 +13,7 @@ export letsencrypt=False ``` ```bash -source vars -./install.sh +sudo ./install.sh ``` Done! diff --git a/install.sh b/install.sh index b104cf8..e4c25cb 100755 --- a/install.sh +++ b/install.sh @@ -3,6 +3,9 @@ # Installs Dependencies automatically ################################################################################ +# source vars +source ./vars + # check if root if [[ $EUID -ne 0 ]]; then echo -e "This script must be run as root"