Varia library working group XPPL.
https://gitea.xpub.nl/XPUB/XPPL
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
269 B
15 lines
269 B
6 years ago
|
---
|
||
|
|
||
|
- name: Ensure the Git package is installed.
|
||
|
become: true
|
||
|
yum:
|
||
|
name: git
|
||
|
state: present
|
||
|
|
||
|
- name: Clone the latest project source.
|
||
|
become: true
|
||
|
git:
|
||
|
repo: https://git.vvvvvvaria.org/decentral1se/xppl.git
|
||
|
dest: /var/xppl/
|
||
|
version: master
|