6 lines
105 B
Bash
6 lines
105 B
Bash
#!/bin/sh
|
|
if [ -f /etc/monit/monitrc ]; then
|
|
CONF="-c /etc/monit/monitrc"
|
|
fi
|
|
exec monit -I ${CONF} 2>&1
|