- x2go-server.yml: Updated condition to use ansible_facts.os_family - upgrade.yml: Updated all conditions and commented lines - caching-nameserver.yml: Updated RedHat OS family checks Fixes deprecation warning in Ansible 2.12+
23 lines
374 B
YAML
23 lines
374 B
YAML
---
|
|
|
|
# ---
|
|
# NFS Server
|
|
# ---
|
|
|
|
- name: (x2g-server.yml) Ensure X2Go server packages are installed.
|
|
apt:
|
|
name:
|
|
- x2goserver
|
|
- x2goserver-xsession
|
|
- x2goserver-printing
|
|
- cups-x2go
|
|
state: present
|
|
when:
|
|
- ansible_facts.os_family == "Debian"
|
|
- "groups['x2go_server']|string is search(inventory_hostname)"
|
|
tags:
|
|
- x2g--server
|
|
|
|
|
|
|