This Ansible role installs the TightVNC server. It configures the VNC server with a password and a specific port.
- A Debian-based system (like Ubuntu)
- Ansible installed
- MATE desktop environment installed
vnc_user
: The user to run the VNC servervnc_password
: The password for VNC access (default "password").vnc_display
: The display number for the VNC server (default: ":1").vnc_port
: The port number for the VNC server (default: 5900).
- hosts: your_target_host
become: yes
vars:
vnc_user: "your_username"
vnc_password: "your_secure_password"
vnc_display: ":1"
vnc_port: 5901
roles:
- atb-ansible-tightvnc