diff options
author | Chris Evich <cevich@redhat.com> | 2019-07-10 12:15:43 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2019-07-16 14:30:42 -0400 |
commit | 1abb2174934a461d90885afc0a8655e9d326f21e (patch) | |
tree | 96c48f8d4b49455c671a6eaffaef68148bafa4bb /contrib/cirrus/lib.sh | |
parent | a449e9a2cf4b73163df75674059de04488cd2706 (diff) | |
download | podman-1abb2174934a461d90885afc0a8655e9d326f21e.tar.gz podman-1abb2174934a461d90885afc0a8655e9d326f21e.tar.bz2 podman-1abb2174934a461d90885afc0a8655e9d326f21e.zip |
Cirrus: Disable most periodic services/timers
For CI testing, it's important to remove as much variability from the
overall system as possible. This permits focusing just on problems
closely related to code-changes. To this end, and because VMs are very
short-lived (2 hours at most), disable all systemd services and timers
which perform periodic activities.
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'contrib/cirrus/lib.sh')
-rw-r--r-- | contrib/cirrus/lib.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/cirrus/lib.sh b/contrib/cirrus/lib.sh index 4acdb460a..ab3c5642d 100644 --- a/contrib/cirrus/lib.sh +++ b/contrib/cirrus/lib.sh @@ -350,6 +350,20 @@ remove_packaged_podman_files(){ done } +systemd_banish(){ + echo "Disabling periodic services that could destabalize testing:" + set +e # Not all of these exist on every platform + for unit in cron atd apt-daily-upgrade apt-daily fstrim motd-news systemd-tmpfiles-clean + do + ooe.sh sudo systemctl stop $unit + ooe.sh sudo systemctl disable $unit + ooe.sh sudo systemctl disable $unit.timer + ooe.sh sudo systemctl mask $unit + ooe.sh sudo systemctl mask $unit.timer + done + set -e +} + _finalize(){ set +e # Don't fail at the very end set +e # make errors non-fatal |