From: Tim Johnson Date: Tue, 20 Nov 2018 03:13:17 +0000 (-0800) Subject: Hide irrelevant error message X-Git-Tag: v0.28.0~7^2 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=fd4dad75bcf3d7b4b5d9b94ea2730da8bc7fc533;p=releng%2Fglobal-jjb.git Hide irrelevant error message Use 'systemctl' to get status of 'sysstat' on newer releases of Unbuntu (16.04 & 18.04). Keep 'grep' to get status of 'sysstat' on Ubuntu 14.4. Unexpected releases will now generate an error. Change-Id: I9745373d38213838381d3f2f0b46a6358014b268 Signed-off-by: Tim Johnson --- diff --git a/shell/sysstat.sh b/shell/sysstat.sh index 6ecab677..5b496259 100644 --- a/shell/sysstat.sh +++ b/shell/sysstat.sh @@ -14,12 +14,25 @@ set +e # DON'T fail build if script fails. OS=$(facter operatingsystem) case "$OS" in Ubuntu) + os_release=$(facter operatingsystemrelease) + case $os_release in + 16.04|18.04) + if ! systemctl status sysstat > /dev/null; then + exit 0 + fi + ;; + 14.04) + if [[ ! -f /etc/default/sysstat ]] || + ! grep --quiet 'ENABLED="true"' /etc/default/sysstat; then + exit 0 + fi + ;; + *) + echo "ERROR: Unknown Release: Ubuntu $os_release" + exit 1 + ;; + esac SYSSTAT_PATH="/var/log/sysstat" - - # Dont run the script when systat is not enabled by default - if ! grep --quiet 'ENABLED="true"' "/etc/default/sysstat"; then - exit 0 - fi ;; CentOS|RedHat) SYSSTAT_PATH="/var/log/sa"