4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-13 12:46:41 +00:00

Indent the "OKs" in status check.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-09-09 01:49:41 -05:00
parent 27639a8943
commit 9d73d823d5
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E

View File

@ -235,7 +235,7 @@ check-install-requirements() {
echo "Operating system: "
CURRENT_OS=$(uname -s)
if [[ $CURRENT_OS == "Linux" ]]; then
echo "OK: ${CURRENT_OS}"
echo " OK: ${CURRENT_OS}"
else
echo "ERROR: You are running an unsupported OS (${CURRENT_OS})."
echo "Automated AzuraCast installation is not currently supported on this"
@ -246,7 +246,7 @@ check-install-requirements() {
echo "Processor Architecture: "
CURRENT_ARCH=$(uname -m)
if [[ $CURRENT_ARCH == "x86_64" ]]; then
echo "OK: ${CURRENT_ARCH}"
echo " OK: ${CURRENT_ARCH}"
else
echo "ERROR: You are running an unsupported processor architecture (${CURRENT_ARCH})."
echo "Automated AzuraCast installation is not currently supported on this "
@ -259,7 +259,7 @@ check-install-requirements() {
REQUIRED_COMMANDS=(curl awk)
for COMMAND in "${REQUIRED_COMMANDS[@]}" ; do
if [[ $(command -v "$COMMAND") ]]; then
echo "OK: ${COMMAND}"
echo " OK: ${COMMAND}"
else
echo "${COMMAND} does not appear to be installed."
echo "Install ${COMMAND} using your host's package manager,"
@ -271,7 +271,7 @@ check-install-requirements() {
echo "Permissions: "
if [[ $EUID -ne 0 ]]; then
if [[ $(command -v sudo) ]]; then
echo "OK: Non-root user with sudo"
echo " OK: Non-root user with sudo"
else
echo "ERROR: You are not currently the root user, and "
echo "'sudo' does not appear to be installed."
@ -280,10 +280,10 @@ check-install-requirements() {
exit 1
fi
else
echo "OK: Root user"
echo " OK: Root user"
fi
echo "OK: All requirements met!"
echo " OK: All requirements met!"
}
install-docker() {