diff --git a/scripts/health/hahealth.py b/scripts/health/hahealth.py index f46aec60d0..f9a2e1dee0 100755 --- a/scripts/health/hahealth.py +++ b/scripts/health/hahealth.py @@ -16,7 +16,7 @@ def get_from_date(): def create_report(): cmd = ['crm', 'report', '-f', get_from_date(), - '-D', '-Z', 'health-report'] + '-Z', 'health-report'] rc, out, err = crm.call(cmd, shell=False) return rc == 0 @@ -26,7 +26,7 @@ def create_report(): def extract_report(): - rc, out, err = crm.call(['tar', 'xjf', 'health-report.tar.bz2'], shell=False) + rc, out, err = crm.call(['tar', 'xzf', 'health-report.tar.gz'], shell=False) return rc == 0