summaryrefslogtreecommitdiff
path: root/libexecs
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2014-04-22 13:50:50 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2014-04-23 15:36:42 +0000
commit2831109ad7398fd5d7a86559b4ba3eb3a85ebb8e (patch)
treebc384a59d6473a7f1c24da16af2194788acab438 /libexecs
parent810fb85f4bbe4c848a2c83bcf3b4be05625ecdbb (diff)
downloadtrove-setup-2831109ad7398fd5d7a86559b4ba3eb3a85ebb8e.tar.gz
Add script to remove lorry-controller from lorry's crontab
Diffstat (limited to 'libexecs')
-rwxr-xr-xlibexecs/remove-lorry-controller-from-lorry-crontab22
1 files changed, 22 insertions, 0 deletions
diff --git a/libexecs/remove-lorry-controller-from-lorry-crontab b/libexecs/remove-lorry-controller-from-lorry-crontab
new file mode 100755
index 0000000..8fc6cf3
--- /dev/null
+++ b/libexecs/remove-lorry-controller-from-lorry-crontab
@@ -0,0 +1,22 @@
+#!/bin/sh
+#
+# Trove used to run a version of Lorry Controller that wasn't a
+# daemon, but instead was invoked once a minute from a crontab owned
+# by the lorry user. When we upgrade to a version of Lorry Controller
+# that does run as a daemon, we need to disable the cronjob. This
+# script does that.
+#
+# The lorry user crontab may contain other jobs, so we can't just
+# willy-nilly delete the whole crontab. Instead, we remove the
+# specific line. The line looks like this:
+#
+# */1 * * * * flock -x -n /home/lorry/lorry-controller-area/lockfile
+# -c lorry-controller --work-area=/home/lorry/lorry-controller-area
+# --log=syslog --log-level=info --html-file=/home/lorry/lc-status.html
+#
+# Except, of course, all on one line.
+
+
+crontab -l |
+grep -v -e '-c lorry-controller' |
+crontab -