Skip to content

Instantly share code, notes, and snippets.

@kirevdokimov
Created August 26, 2020 23:34
Show Gist options
  • Save kirevdokimov/86ce6c903bda13b8629d85ce39d2fedc to your computer and use it in GitHub Desktop.
Save kirevdokimov/86ce6c903bda13b8629d85ce39d2fedc to your computer and use it in GitHub Desktop.
Restart nginx or show error
#! /bin/bash
if systemctl restart nginx; then
echo Ok
else
systemctl status nginx.service --no-pager --full
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment