15 lines
275 B
YAML
15 lines
275 B
YAML
|
---
|
||
|
- name: Install git
|
||
|
become: true
|
||
|
apt:
|
||
|
name: git
|
||
|
state: present
|
||
|
|
||
|
- name: Clone tunuifranken.info repo
|
||
|
git:
|
||
|
repo: git@tunuifranken.info:flyingscorpio/tunuifranken.info.git
|
||
|
dest: "{{ dir_tunuifranken }}"
|
||
|
clone: yes
|
||
|
version: main
|
||
|
update: no
|