mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
bitwarden
This commit is contained in:
parent
44822bd37b
commit
7a538639c6
@ -1,19 +1,41 @@
|
|||||||
- name: Install vnc packages
|
- block:
|
||||||
|
|
||||||
|
- name: Install vnc packages
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name:
|
name:
|
||||||
- tigervnc-standalone-server
|
- tigervnc-standalone-server
|
||||||
- tigervnc-common
|
- tigervnc-common
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
|
|
||||||
|
- name: Create a directory if it does not exist
|
||||||
- name: Creating a file with content
|
ansible.builtin.file:
|
||||||
|
path: /home/jd/.vnc/
|
||||||
|
state: directory
|
||||||
|
mode: '0755'
|
||||||
|
owner: jd
|
||||||
|
group: jd
|
||||||
|
- name: Creating a file with content
|
||||||
copy:
|
copy:
|
||||||
dest: "/home/jd/.vnc/config"
|
dest: "/home/jd/.vnc/config"
|
||||||
content: |
|
content: |
|
||||||
session=cinnamon
|
session=mate
|
||||||
geometry=1200x721
|
geometry=1200x721
|
||||||
localhost
|
localhost
|
||||||
alwaysshared
|
alwaysshared
|
||||||
|
mode: '0755'
|
||||||
|
owner: jd
|
||||||
|
group: jd
|
||||||
|
- name: Reconfigure vnc
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /etc/tigervnc/vncserver-config-defaults
|
||||||
|
regexp: "^$localhost =.* "
|
||||||
|
line: '$localhost = "no";'
|
||||||
|
|
||||||
|
- name: Reconfigure vnc1
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /etc/tigervnc/vncserver.users
|
||||||
|
#regexp: "^:1=.*"
|
||||||
|
line: ':1=jd'
|
||||||
|
|
||||||
- name: Reconfigure zabbix agent Server
|
- name: Reconfigure zabbix agent Server
|
||||||
ansible.builtin.lineinfile:
|
ansible.builtin.lineinfile:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user