8 lines
193 B
Bash
8 lines
193 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
pgrep -f "CMEP-CMSP" >/dev/null
|
|
pgrep -f "CMEP-CMTP" >/dev/null
|
|
pgrep -f "/usr/local/nginx/sbin/nginx" >/dev/null
|
|
test -f /usr/local/nginx/html/organization.json
|