From e0c6a84bff31950dbd7c1c62df4e3ff98dd98271 Mon Sep 17 00:00:00 2001 From: Jerry Vonau Date: Thu, 24 Aug 2017 12:02:17 -0500 Subject: [PATCH] don't fail if apparmor is not installed (#161) --- roles/1-prep/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/1-prep/tasks/main.yml b/roles/1-prep/tasks/main.yml index c23d6e0c3..1c25c7fad 100644 --- a/roles/1-prep/tasks/main.yml +++ b/roles/1-prep/tasks/main.yml @@ -55,6 +55,7 @@ - name: Disable apparmor -- on by default in ubuntu service: name=apparmor enabled=False state=stopped when: is_ubuntu + ignore_errors: true - name: Disable selinux on next boot selinux: state=disabled