]> code.delx.au - monosys/commitdiff
healthcheck: packages match ID_LIKE=arch
authorJames Bunton <jamesbunton@delx.net.au>
Sat, 20 Jun 2020 05:13:25 +0000 (15:13 +1000)
committerJames Bunton <jamesbunton@delx.net.au>
Sat, 20 Jun 2020 05:13:25 +0000 (15:13 +1000)
healthcheck/packages

index ab6260a101912e23d6b102073afcc78243081654..0df8c338d9794d8dbb5348941f0062373a477d64 100755 (executable)
@@ -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