Skip to content
Snippets Groups Projects
Commit e201fd52 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Check for root privilege in start.sh"

parents 415c5e47 0dc0cf1b
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,11 @@
# services are up. You will also need these in order to interact with the
# installation once started.
if [[ $EUID -ne 0 ]]; then
echo "You must execute this script as root." 1>&2
exit 1
fi
# Set SELinux to permissive
setenforce permissive
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment