enable automated setup of physical infrastructure
[integration/packaging/ansible-opendaylight.git] / roles / infra / tasks / copy_apparmor_profile.yml
1 - name: Copy docker-unconfined apparmor profile to host
2   tags:
3     - files
4     - security
5     - docker
6   copy:
7     src: files/docker-unconfined
8     dest: "{{ profile_path }}"
9     mode: 0755
10   notify:
11     - Parse apparmor profile
12
13 # vim: set et ts=2 sw=2 ai ft=yaml :
14