Created
November 6, 2013 13:52
-
-
Save engelgabriel/7336384 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ubuntu upstart file at /etc/init/mms-agent.conf | |
description "MongoDB Monitoring Service (MMS) Agent" | |
pre-start script | |
mkdir -p /var/log/mms-agent/ | |
end script | |
post-stop script | |
echo "$(date +'%Y-%m-%d %T,000') INFO mms-agent stopped" >> /var/log/mms-agent/agent.log | |
end script | |
start on runlevel [2345] | |
stop on runlevel [06] | |
exec nohup /usr/bin/env python /opt/mms-agent/agent.py >> /var/log/mms-agent/agent.log 2>&1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment