ansible-ize vnc
This commit is contained in:
parent
e8fd519bff
commit
bb57203c22
|
@ -1,3 +1,4 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
- include: pb.yml
|
- include: pb.yml
|
||||||
|
- include: vnc.yml
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
# install vnc
|
||||||
|
---
|
||||||
|
- name: install vnc
|
||||||
|
make:
|
||||||
|
chdir: /usr/src/pb
|
||||||
|
target: install
|
||||||
|
become: yes
|
|
@ -15,3 +15,4 @@
|
||||||
- include: gopher.yml
|
- include: gopher.yml
|
||||||
- include: pb.yml
|
- include: pb.yml
|
||||||
- include: botany.yml
|
- include: botany.yml
|
||||||
|
- include: vnc.yml
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
# install vnc scripts
|
||||||
|
---
|
||||||
|
- name: clone vnc
|
||||||
|
git:
|
||||||
|
repo: https://tildegit.org/thunix/vnc
|
||||||
|
dest: /usr/src/vnc
|
||||||
|
force: yes
|
||||||
|
notify:
|
||||||
|
- install vnc
|
Loading…
Reference in New Issue