Skip to content
Snippets Groups Projects
Unverified Commit 6789f9ad authored by Max Adamo's avatar Max Adamo
Browse files

typo fix

parent 72a236ee
No related branches found
No related tags found
No related merge requests found
......@@ -44,11 +44,11 @@ if ! source /etc/os-release &>/dev/null; then
echo "no idea what to do with this OS: I was not able to access /etc/os-release"
echo ""
clean_up
elif [[ "$ID" == "ubuntu" ]] || [["$ID" == "debian" ]]; then
elif [[ "$ID" == "ubuntu" ]] || [[ "$ID" == "debian" ]]; then
CERT_BASE="/etc/ssl/certs"
KEY_BASE="/etc/ssl/private"
GROUPNAME="ssl-cert"
elif [[ "$ID" == "centos" ]] || [["$ID" == "rhel" ]]; then
elif [[ "$ID" == "centos" ]] || [[ "$ID" == "rhel" ]]; then
CERT_BASE="/etc/pki/tls/certs"
KEY_BASE="/etc/pki/tls/private"
GROUPNAME="root"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment