added root check
This commit is contained in:
parent
a9ad3f0152
commit
c7ea64cd92
4
.vscode/numbered-bookmarks.json
vendored
4
.vscode/numbered-bookmarks.json
vendored
@ -6,13 +6,13 @@
|
||||
-1,
|
||||
30,
|
||||
43,
|
||||
668,
|
||||
-1,
|
||||
-1,
|
||||
-1,
|
||||
-1,
|
||||
-1,
|
||||
659,
|
||||
625
|
||||
-1
|
||||
]
|
||||
}
|
||||
]
|
||||
|
9
setup.sh
9
setup.sh
@ -62,6 +62,15 @@ tag_phpAddr="<phpAddr>"
|
||||
tag_phpPort="<phpPort>"
|
||||
tag_phpVersion="<phpVersion>"
|
||||
|
||||
|
||||
|
||||
### check running as root, otherwise exit
|
||||
if [ $(id -u) -ne 0 ]; then
|
||||
echo -e "\n${err}This script MUST be run as ROOT. Exiting.${norm}"
|
||||
exit 2
|
||||
fi
|
||||
|
||||
|
||||
### quick intro for the user
|
||||
echo -e "\n${mag}This script will customize the provided NGINX template files for your"
|
||||
echo "environment. You will be prompted for all necessary information. After that,"
|
||||
|
Loading…
Reference in New Issue
Block a user