mirror of
https://github.com/m8tin/cis.git
synced 2025-12-06 15:58:26 +01:00
8 lines
100 B
Bash
Executable File
8 lines
100 B
Bash
Executable File
#!/bin/bash
|
|
|
|
nginx -t &> /dev/null \
|
|
&& systemctl restart nginx.service \
|
|
&& exit 0
|
|
|
|
exit 1
|