separate youtube and facebook

add salesforce traffic
separate vnc install from youtbube
This commit is contained in:
Pi
2019-03-01 16:09:36 -05:00
parent 7bef07f2e9
commit 6350779e28
13 changed files with 9034 additions and 45 deletions

View File

@@ -0,0 +1,4 @@
Authentication=VncAuth
Encryption=PreferOn
Password=12d2f5a0e446b80ad72a2ec6a3688ee308f543f59d7bf06f

17
roles/vnc/tasks/main.yaml Executable file
View File

@@ -0,0 +1,17 @@
---
- name: enable vnc service and ensure it is not masked
become: true
systemd:
name: vncserver-x11-serviced.service
enabled: yes
masked: no
state: restarted
tags: enablestart_vnc
- name: copy vnc configuration with password
become: true
copy:
src: "{{ role_path }}/files/vncserver-x11"
dest: /root/.vnc/config.d/vncserver-x11
owner: root
group: root
tags: vnc_config