diff --git a/lib/utils.sh b/lib/utils.sh index 4ebdd1c..9e61bfd 100644 --- a/lib/utils.sh +++ b/lib/utils.sh @@ -593,8 +593,6 @@ is_pkg_installed() { is_pkg_a_dependency() { # check if package is needed by another installed package local PKG_NAME=$1 - # ex: 'dnsmasq' is going to install 'dnsmasq-base' - # so we don't care about 'dnsmasq-base', we want to know about others packages shift local known_deps="$*" @@ -672,5 +670,4 @@ manage_service() { fi systemctl "$action" "$service" >/dev/null 2>&1 - }