Reset the if's

This commit is contained in:
DL6ER 2016-12-21 12:57:02 +01:00
parent 58261098fb
commit 8841bdd252
No known key found for this signature in database
GPG key ID: BB8EC0BC77973A30

View file

@ -62,7 +62,7 @@ else
echo ":::" echo ":::"
echo "::: Detecting the presence of the sudo utility for continuation of this install..." echo "::: Detecting the presence of the sudo utility for continuation of this install..."
if command -v sudo; then if [ -x "$(command -v sudo)" ]; then
echo "::: Utility sudo located." echo "::: Utility sudo located."
exec curl -sSL https://install.pi-hole.net | sudo bash "$@" exec curl -sSL https://install.pi-hole.net | sudo bash "$@"
exit $? exit $?
@ -74,7 +74,7 @@ fi
# Compatibility # Compatibility
if command -v apt-get; then if [[ $(command -v apt-get) ]]; then
#Debian Family #Debian Family
############################################# #############################################
PKG_MANAGER="apt-get" PKG_MANAGER="apt-get"
@ -101,9 +101,9 @@ if command -v apt-get; then
package_check_install() { package_check_install() {
dpkg-query -W -f='${Status}' "${1}" 2>/dev/null | grep -c "ok installed" || ${PKG_INSTALL} "${1}" dpkg-query -W -f='${Status}' "${1}" 2>/dev/null | grep -c "ok installed" || ${PKG_INSTALL} "${1}"
} }
elif command -v rpm; then elif [ $(command -v rpm) ]; then
# Fedora Family # Fedora Family
if command -v dnf; then if [ $(command -v dnf) ]; then
PKG_MANAGER="dnf" PKG_MANAGER="dnf"
else else
PKG_MANAGER="yum" PKG_MANAGER="yum"