X-Git-Url: https://code.delx.au/monosys/blobdiff_plain/380e99458ebaf2996846594196621177db41bbc1..06b5c1b2a94cd1d10d6bb0972fbd42766bfad0d2:/healthcheck/packages diff --git a/healthcheck/packages b/healthcheck/packages index ab6260a..0df8c33 100755 --- a/healthcheck/packages +++ b/healthcheck/packages @@ -9,20 +9,16 @@ fi . /etc/os-release -function is_debian { - [ "$ID" = debian ] || [ "${ID_LIKE:-}" = debian ] +function is_distro { + [ "$ID" = "$1" ] || [ "${ID_LIKE:-}" = "$1" ] } -function is_arch { - [ "$ID" = arch ] -} - -if is_debian; then +if is_distro debian; then echo "# aptorphan" aptorphan 1>&2 fi -if is_arch; then +if is_distro arch; then echo "# pacorphan" pacorphan 1>&2 fi