This commit is contained in:
2021-07-15 15:42:30 -06:00
parent 0bb0af608f
commit 12b275a050
74 changed files with 9436 additions and 3 deletions

View File

@@ -138,7 +138,7 @@ when: ansible_os_family == "Archlinux" and ansible_lsb.id == "ManjaroLinux"
- apt-transport-https
- openssh-server
# Creat directory /etc/nginx
# Create directory /etc/nginx
- name: Create a directory if it does not exist
file:
path: /etc/nginx
@@ -156,4 +156,10 @@ when: ansible_os_family == "Archlinux" and ansible_lsb.id == "ManjaroLinux"
owner: '{{ superuser }}'
group: '{{ superuser }}'
# Set permissions
- name: Applying permissions of /etc/poetry/bin/poetry
file:
path: /etc/poetry/bin/poetry
mode: '0755'
```