From a69ca59764d5095bd071056f612627fd2714943a Mon Sep 17 00:00:00 2001 From: Mrunal Patel Date: Fri, 29 Sep 2017 12:03:28 -0700 Subject: [PATCH] Only update kernel commandline to add quota on RHEL Fedora amis are still ext4 based and ext4 doesn't like this flag. Signed-off-by: Mrunal Patel --- contrib/test/integration/system.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/test/integration/system.yml b/contrib/test/integration/system.yml index 97695b7b..c7120d4d 100644 --- a/contrib/test/integration/system.yml +++ b/contrib/test/integration/system.yml @@ -67,3 +67,4 @@ - name: Update the kernel cmdline to include quota support command: grubby --update-kernel=ALL --args="rootflags=pquota" + when: ansible_distribution in ['RedHat', 'CentOS']