#!/bin/bash if [ $# -eq 0 ]; then echo "No service specified" exit 1 fi if systemctl is-active --quiet $1; then exit 0 else exit 2 fi