Install spice-html5 from source
'ws://' is currently hardcoded within the spice_auto.html file included in the packaged release of spice-html5, raising a security error when accessing consoles over HTTPS. Remove the existing apt package and install spice-html5 from source instead since this issue has been corrected as of spice-html5-0.1.6. Change-Id: Ie308a477143037963f903f2ac21b2b1f0328fcb3 Partial-Bug: #1424797
This commit is contained in:
parent
8b296911bb
commit
35545452bf
@ -165,6 +165,8 @@ nova_spice_html5proxy_base_url: "{{ nova_spice_html5proxy_base_uri }}/spice_auto
|
||||
nova_spice_console_keymap: en-us
|
||||
nova_spice_console_agent_enabled: True
|
||||
nova_spice_program_name: nova-spicehtml5proxy
|
||||
nova_spicehtml5_git_repo: https://github.com/SPICE/spice-html5
|
||||
nova_spicehtml5_git_install_branch: master
|
||||
|
||||
## Nova novnc
|
||||
nova_novncproxy_proto: http
|
||||
|
@ -25,15 +25,29 @@
|
||||
- nova-apt-packages
|
||||
- nova-spice-apt-packages
|
||||
|
||||
- name: Install apt packages
|
||||
- name: Remove apt packages
|
||||
apt:
|
||||
pkg: "{{ item }}"
|
||||
state: latest
|
||||
register: install_packages
|
||||
until: install_packages|success
|
||||
state: absent
|
||||
register: remove_packages
|
||||
until: remove_packages|success
|
||||
retries: 5
|
||||
delay: 2
|
||||
with_items: nova_spice_apt_packages
|
||||
tags:
|
||||
- nova-apt-packages
|
||||
- nova-spice-apt-packages
|
||||
|
||||
- name: Get package from git
|
||||
git:
|
||||
repo: "{{ nova_spicehtml5_git_repo }}"
|
||||
dest: "/usr/share/spice-html5"
|
||||
clone: "yes"
|
||||
update: "yes"
|
||||
version: "{{ nova_spicehtml5_git_install_branch }}"
|
||||
register: git_clone
|
||||
until: git_clone|success
|
||||
retries: 5
|
||||
delay: 2
|
||||
tags:
|
||||
- nova-spice-git
|
||||
|
Loading…
x
Reference in New Issue
Block a user