diff --git a/roles/static_websites/tasks/main.yml b/roles/static_websites/tasks/main.yml index 1d51e60..2f2f6c3 100644 --- a/roles/static_websites/tasks/main.yml +++ b/roles/static_websites/tasks/main.yml @@ -17,22 +17,10 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -- name: Update default SELinux contexts - sefcontext: - target: '{{ item }}(/.*)?' - seuser: "system_u" - setype: "var_t" - state: present - with_items: - - "{{ static_websites_install_location }}" - become: true - - name: Create directory file: path: "{{ item }}" state: directory - seuser: "system_u" - setype: "var_t" with_items: - "{{ static_websites_install_location }}" become: true