Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check which services are running #50

Open
fbocolowski opened this issue Apr 14, 2019 · 0 comments
Open

Check which services are running #50

fbocolowski opened this issue Apr 14, 2019 · 0 comments
Labels
enhancement New feature or request

Comments

@fbocolowski
Copy link
Owner

fbocolowski commented Apr 14, 2019

Here's the code snippet:

    SERVICES=("ufw" "sshd" "fail2ban" "mongod" "nginx")
    for SERVICE in "${SERVICES[@]}"; do
      SERVICE_STATUS=($(systemctl is-active "$SERVICE"))
      echo "  $SERVICE"
      if [ $SERVICE_STATUS != "active" ]; then
        echo "  SERVICE INACTIVE!"
        slack "Service $SERVICE is inactive!"
      else
        echo "  SERVICE OK!"
      fi
    done
@fbocolowski fbocolowski changed the title Check is services are running Check what services are running Jun 24, 2019
@fbocolowski fbocolowski changed the title Check what services are running Check which services are running Sep 16, 2021
@fbocolowski fbocolowski added the enhancement New feature or request label Sep 17, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant