ansible_deploy/tasks/git.yml
GnomeZworc 165b48cd61
split role in multiple files
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2025-11-24 23:30:06 +01:00

27 lines
No EOL
776 B
YAML

---
- name: Cloner un two_with_git
ansible.builtin.git:
repo: "https://{{ __git.__user }}:{{ __git.__token }}@{{ __git.__host }}/syonad/two_with_bash.git"
dest: "/opt/two_with_bash"
version: "main"
- name: Cron git pull two_with_git
ansible.builtin.cron:
name: "update_repo_two_with_git"
user: "root"
minute: "*/5"
job: "cd /opt/two_with_bash && git pull > /var/log/git-pull.log 2>&1"
- name: Cloner un two
ansible.builtin.git:
repo: "https://{{ __git.__user }}:{{ __git.__token }}@{{ __git.__host }}/syonad/two.git"
dest: "/opt/two"
version: "main"
- name: Cron git pull two
ansible.builtin.cron:
name: "update_repo_two"
user: "root"
minute: "*/5"
job: "cd /opt/two && git pull > /var/log/git-pull.log 2>&1"