diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2015-02-23 16:02:43 +0100 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2015-02-23 16:02:43 +0100 |
commit | e69b0f84f86ceb32e62dbef5492fc1aac20de919 (patch) | |
tree | 5d708d42df60c71787762f82f89b779c16d735d4 /global/overlay/usr/local | |
parent | d164fde704f65432943a4fa3f6d5a3f3298c262d (diff) |
init
Diffstat (limited to 'global/overlay/usr/local')
-rwxr-xr-x | global/overlay/usr/local/bin/run-cosmos | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/global/overlay/usr/local/bin/run-cosmos b/global/overlay/usr/local/bin/run-cosmos new file mode 100755 index 0000000..a37d49f --- /dev/null +++ b/global/overlay/usr/local/bin/run-cosmos @@ -0,0 +1,22 @@ +#!/bin/sh +# +# Simplify running cosmos, with serialization if flock is available. +# + +set -e + +FLOCK=`which flock` + +if [ -x "$FLOCK" ]; then + ($FLOCK --exclusive --wait 60 9 || exit 1 + cosmos $* update + cosmos $* apply + )9>/var/lock/run-cosmos +else + cosmos $* update + cosmos $* apply +fi + +touch /var/run/last-cosmos-ok.stamp + +find /var/lib/puppet/reports/ -type f -mtime +10 | xargs rm -f |