bitwarden

This commit is contained in:
jaydee 2024-12-12 00:28:57 +01:00
parent 44822bd37b
commit 7a538639c6
2 changed files with 38 additions and 16 deletions

View File

@ -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:

View File

@ -1,4 +1,4 @@
--- ---
- hosts: datacenter - hosts: datacenter
roles: roles:
- ssh_banner - vnc_server