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

@ -86,11 +86,6 @@
108.171.192.0/19
# VE ( u.a. cne.gob.ve)
201.130.82.0/23
# mx1.privateemail.com mx2.privateemail.com
198.54.122.250
198.54.122.240
# US (u.a. direktpaket.com>)
198.54.112.0/20
# classic-british-motorcycles.com
172.67.189.127
104.21.33.94

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