Files
cis/script/check/host/checks/app_nginx_is_installed.check.sh
2025-03-08 09:33:35 +01:00

6 lines
62 B
Bash
Executable File

#!/bin/bash
nginx -v > /dev/null 2>&1 \
&& exit 0
exit 1