From 0ea950f819cb0b6ff2a0203e4c917030e61039c4 Mon Sep 17 00:00:00 2001 From: Alan Campbell Date: Mon, 20 Mar 2017 00:59:10 -0400 Subject: [PATCH] Add upstart example --- example.upstart.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 example.upstart.conf diff --git a/example.upstart.conf b/example.upstart.conf new file mode 100644 index 0000000..e00e088 --- /dev/null +++ b/example.upstart.conf @@ -0,0 +1,14 @@ +description "Cachet Monitor" + +start on startup + +env USER=root +env HOME=/root + +setuid root +setgid root +chdir /root + +script + exec cachet-monitor -c /cachet-monitor.json --immediate +end script