diff options
Diffstat (limited to 'roles/tigervnc/tasks/main.yaml')
-rw-r--r-- | roles/tigervnc/tasks/main.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/roles/tigervnc/tasks/main.yaml b/roles/tigervnc/tasks/main.yaml new file mode 100644 index 0000000..a6c930d --- /dev/null +++ b/roles/tigervnc/tasks/main.yaml @@ -0,0 +1,17 @@ +- name: install tigervnc server and dependencies + apt: + name: + - tigervnc-standalone-server + - tigervnc-common + - autocutsel + state: present + update_cache: true + +- name: deploy vnc-server script to /usr/local/bin + copy: + src: vnc-server-wrapper + dest: /usr/local/bin/vnc-server-wrapper + owner: root + group: root + mode: '0755' + |