diff --git a/defaults/main.yml b/defaults/main.yml index 562afb53..8fbd313a 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -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 diff --git a/tasks/nova_console_spice_install.yml b/tasks/nova_console_spice_install.yml index c98dfae1..966130dd 100644 --- a/tasks/nova_console_spice_install.yml +++ b/tasks/nova_console_spice_install.yml @@ -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