Skip to content
Snippets Groups Projects
Commit 47ea2d5f authored by Ross McDonald's avatar Ross McDonald Committed by Cameron Sparr
Browse files

Added Amazon Linux logic to post-installation script.

closes #579
parent 16540e35
No related branches found
No related tags found
No related merge requests found
......@@ -66,4 +66,11 @@ elif [[ -f /etc/debian_version ]]; then
install_init
install_update_rcd
fi
elif [[ -f /etc/os-release ]]; then
source /etc/os-release
if [[ $ID = "amzn" ]]; then
# Amazon Linux logic
install_init
install_chkconfig
fi
fi
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