This commit is contained in:
2024-02-04 17:27:13 +01:00
parent 762e38586e
commit 67f771e2bf
7 changed files with 442 additions and 12 deletions

View File

@ -180,6 +180,15 @@
- nfs
# tags supported inside x2go-server.yml:
#
# x2go-server
- import_tasks: x2go-server.yml
when: inventory_hostname in groups['x2go_server']
tags:
- x2go
# tags supported inside copy_files.yml:
#
# copy-files

View File

@ -0,0 +1,21 @@
---
# ---
# NFS Server
# ---
- name: (x2g-server.yml) Ensure X2Go server packages are installed.
apt:
name:
- x2goserver
- x2goserver-xsession
- x2gobroker-daemon
state: present
when:
- ansible_os_family == "Debian"
- "groups['x2go_server']|string is search(inventory_hostname)"
tags:
- x2g--server