mirror of
https://github.com/de-it-krachten/ansible-role-citrix
synced 2026-05-14 03:31:51 +00:00
No description
- Jinja 100%
|
|
||
|---|---|---|
| .github/workflows | ||
| defaults | ||
| meta | ||
| molecule/default | ||
| tasks | ||
| .ansible-lint | ||
| .cicd | ||
| .cicd.overwrite | ||
| .collections | ||
| .gitignore | ||
| .releaserc.yml | ||
| .roles | ||
| .yamllint | ||
| CHANGELOG.md | ||
| README.md | ||
ansible-role-citrix
Installs Citrix Workspace App on a variety of Linux distributions.
- Download the required packages from link.
- Put the packages in a custom directory on the Ansible control node.
- Set variable
citrix_package_pathto the package location.
Dependencies
Roles
None
Collections
None
Platforms
Supported platforms
- Red Hat Enterprise Linux 81
- Red Hat Enterprise Linux 91
- Red Hat Enterprise Linux 101
- RockyLinux 8
- RockyLinux 9
- RockyLinux 10
- OracleLinux 8
- OracleLinux 9
- OracleLinux 10
- AlmaLinux 8
- AlmaLinux 9
- AlmaLinux 10
- Debian 11 (Bullseye)
- Debian 12 (Bookworm)
- Debian 13 (Trixie)
- Ubuntu 22.04 LTS
- Ubuntu 24.04 LTS
- Ubuntu 26.04 LTS
- Fedora 42
- Fedora 43
Note: 1 : no automated testing is performed on these platforms
Role Variables
defaults/main.yml
# Citrix Workspace App version
citrix_version: "26.01.0.150"
# Define location that holds the packages
citrix_package_path: files
# Install USB support
citrix_usb_support: false
defaults/family-Debian.yml
# Main package name
citrix_package_filename: "icaclient_{{ citrix_version }}_amd64.deb"
# USB support package
citrix_usb_package_filename: "ctxusb_{{ citrix_version }}_amd64.deb"
defaults/family-RedHat.yml
# Main package name
citrix_package_filename: "ICAClient-rhel-{{ citrix_version }}-1.x86_64.rpm"
# USB package name
citrix_usb_package_filename: "ctxusb-{{ citrix_version }}-1.x86_64.rpm"
Example Playbook
molecule/default/converge.yml
- name: sample playbook for role 'citrix'
hosts: all
become: 'yes'
tasks:
- name: Include role 'citrix'
ansible.builtin.include_role:
name: citrix