From e6f0c91eca14043c6f46efab9c60ef555ec179a5 Mon Sep 17 00:00:00 2001 From: bryan Date: Thu, 24 Apr 2025 20:09:18 -0400 Subject: [PATCH] Quiet systemctl output for uninstall() --- installJRMC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installJRMC b/installJRMC index 5c8fcf7..3b2441e 100755 --- a/installJRMC +++ b/installJRMC @@ -1563,7 +1563,7 @@ uninstall() { set_service_vars "$service" "$type"; for unit in "$SERVICE_NAME" "$TIMER_NAME"; do if "${IS_ACTIVE[@]}" "$unit" || - "${IS_ENABLED[@]}" "$unit"; then + "${IS_ENABLED[@]}" "$unit" &>/dev/null; then "${DISABLE[@]}" "$unit" fi done