lufi/.provision/ansible-role-lufi/tasks/gitclone.yml

30 lines
530 B
YAML

#gitclone
---
- name: clone the repository
ansible.builtin.git:
repo: 'https://framagit.org/fiat-tux/hat-softwares/lufi.git'
dest: "{{ app_dir }}"
clone: yes
update: yes
version: "{{ project_version }}"
- name: Change the owner
ansible.builtin.file:
path: "{{ app_dir }}"
owner: "{{ lufi_owner }}"
group: "{{ lufi_group }}"
state: directory
recurse: yes
- name: Add the robots.txt file
ansible.builtin.copy:
src: ../files/robots.txt
dest: "{{ robots_text }}"