Skip to content
Snippets Groups Projects
Commit ebdd512c authored by Chris Hines's avatar Chris Hines
Browse files

adding the vncserver role to the repo for jupiter

parent 3dbd2adb
No related branches found
No related tags found
No related merge requests found
---
- include_vars: "{{ hostvars[ansible_hostname]['ansible_distribution'] }}_{{ ansible_architecture }}.yml"
- name: add repos apt
shell: "add-apt-repository -y 'deb {{ item }} {{ ansible_distribution_release }} main' "
sudo: true
with_items: apt_repos
when: ansible_os_family == 'Debian'
- name: install system packages apt
apt: name={{ item }} state=installed update_cache=true force=yes
sudo: true
with_items: system_packages
when: ansible_os_family == 'Debian'
- name: install system packages yum
yum: name={{ item }} state=installed
sudo: true
with_items: system_packages
when: ansible_os_family == 'RedHat'
---
system_packages:
- "@desktop"
- tigervnc-server
---
system_packages:
- mate-desktop-environment
- tightvncserver
apt_repos:
- "http://repo.mate-desktop.org/archive/1.8/ubuntu"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment