🐛 First fix Ansible installation
This commit is contained in:
parent
3dfed70eb1
commit
3f0208a664
6 changed files with 40 additions and 25 deletions
23
ansible/roles/2-nk20/tasks/main.yml
Normal file
23
ansible/roles/2-nk20/tasks/main.yml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
- name: Create note_kfet dir with good permissions
|
||||
file:
|
||||
path: /var/www/note_kfet
|
||||
state: directory
|
||||
owner: www-data
|
||||
group: www-data
|
||||
mode: u=rwx,g=rwxs,o=rx
|
||||
|
||||
- name: Clone Note Kfet
|
||||
git:
|
||||
repo: https://gitlab.crans.org/bde/nk20.git
|
||||
dest: /var/www/note_kfet
|
||||
version: beta-soon
|
||||
track_submodules: yes
|
||||
|
||||
- name: Update permissions for note_kfet dir
|
||||
file:
|
||||
path: /var/www/note_kfet
|
||||
state: directory
|
||||
recurse: yes
|
||||
owner: www-data
|
||||
group: www-data
|
||||
Loading…
Add table
Add a link
Reference in a new issue