Skip to content

Commit

Permalink
Merge pull request #1 from nesi/screensaver
Browse files Browse the repository at this point in the history
remove xfce4-screensaver and add firefox to vnc image
  • Loading branch information
chrisdjscott authored Aug 21, 2024
2 parents 6a8cd59 + f4f2c90 commit bf12c18
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ansible/roles/nesi.vnc/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,12 @@ virtualgl_packages:
additonal_packages:
- python3-pip
- xorg-x11-xauth
- firefox

python_packages:
- ts

group_packages:
- xfce

turbovnc_bin_dir: "/opt/TurboVNC/bin"
turbovnc_bin_dir: "/opt/TurboVNC/bin"
15 changes: 13 additions & 2 deletions ansible/roles/nesi.vnc/tasks/install-additionals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@
pip3 install {{ item }}
with_items: "{{ python_packages }}"

#- name: Install xfce group
# shell: >-
# dnf groupinstall -y xfce

- name: Install xfce group
shell: >-
dnf groupinstall -y xfce
dnf:
name: '@xfce'
state: present

- name: Remove xfce4-screensaver
dnf:
name: xfce4-screensaver
state: absent
autoremove: false

0 comments on commit bf12c18

Please sign in to comment.