diff options
author | Kevin Fenzi <kevin@scrye.com> | 2017-04-10 20:39:17 +0000 |
---|---|---|
committer | Kevin Fenzi <kevin@scrye.com> | 2017-04-10 20:39:17 +0000 |
commit | 7218efb9233a2d9d59938b7413cfaef2d5fb34e8 (patch) | |
tree | 2b26ca0f7f968db954151c8c0f1729a2936009f5 | |
parent | 3103341654b66f61d0b8cd6d118234d39a9b558e (diff) | |
download | ansible-7218efb9233a2d9d59938b7413cfaef2d5fb34e8.tar.gz ansible-7218efb9233a2d9d59938b7413cfaef2d5fb34e8.tar.xz ansible-7218efb9233a2d9d59938b7413cfaef2d5fb34e8.zip |
make atomic-cd cron not noisy
-rw-r--r-- | roles/releng/files/atomic-cd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/releng/files/atomic-cd b/roles/releng/files/atomic-cd index d99570c80..da90f7153 100644 --- a/roles/releng/files/atomic-cd +++ b/roles/releng/files/atomic-cd @@ -1,4 +1,4 @@ # continous delivery of atomic host MAILTO=releng-cron@lists.fedoraproject.org -*/15 * * * * root TMPDIR=`mktemp -d /tmp/atomic-cd.XXXXXX` && pushd $TMPDIR && git clone -q https://pagure.io/releng.git && cd releng && LANG=en_US.UTF-8 /usr/local/bin/lock-wrapper atomic-cd ./scripts/build-test-ostree && popd && rm -rf $TMPDIR +*/15 * * * * root TMPDIR=`mktemp -d /tmp/atomic-cd.XXXXXX` && pushd $TMPDIR >& /dev/null && git clone -q https://pagure.io/releng.git && cd releng && LANG=en_US.UTF-8 /usr/local/bin/lock-wrapper atomic-cd ./scripts/build-test-ostree >& /dev/null && popd >& /dev/null && rm -rf $TMPDIR |