From 9af829151782541ec3ae1e223f94edcc8dc4fd1f Mon Sep 17 00:00:00 2001 From: Egon Rijpkema Date: Fri, 4 May 2018 15:40:38 +0200 Subject: [PATCH] Removed app armor --- roles/common/tasks/main.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index 6d4b966..4efdd4a 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -10,13 +10,13 @@ - name: common | install packages apt: pkg={{ item }} state=latest update_cache=yes with_items: - - curl - - htop - - molly-guard - - sudo - - tree - - vim - - python-simplejson + - curl + - htop + - molly-guard + - sudo + - tree + - vim + - python-simplejson - name: sshd_config file: @@ -26,4 +26,7 @@ owner: root group: root +- name: disable apparmor + apt: pkg=apparmor state=absent + - include: docker.yml