Change sites to Sites to make home dir more consistent

This commit is contained in:
2022-04-10 00:49:41 +02:00
parent 1b02ec12fe
commit d596a5fa9a
3 changed files with 12 additions and 12 deletions
@@ -1,4 +1,13 @@
---
- name: Create static site directories
become: yes
ansible.builtin.file:
path: "{{ item.path }}"
state: directory
mode: '0755'
owner: "{{ item.owner }}"
group: "{{ item.owner }}"
loop: "{{ checkout_static_sites.checkouts }}"
- name: Check out static site repositories
become: yes
become_user: "{{ item.owner }}"
@@ -6,5 +15,4 @@
dest: "{{ item.path }}"
repo: "{{ item.url }}"
version: "{{ item.commit }}"
loop: "{{ checkout_static_sites.checkouts }}"