Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
$unix_sock_dir = $::libvirt::params::unix_sock_dir,
# qemu.conf options
$qemu_vnc_listen = undef,
$qemu_vnc_password = undef,
$qemu_vnc_sasl = undef,
$qemu_vnc_tls = undef,
$qemu_set_process_name = undef,
Expand Down
3 changes: 3 additions & 0 deletions templates/qemu.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ vnc_tls = 0
# example here before you set this.
#
# vnc_password = "XYZ12345"
<% if @qemu_vnc_password -%>
vnc_password = "<%= @qemu_vnc_password %>"
<% end -%>


# Enable use of SASL encryption on the VNC server. This requires
Expand Down