No description
Find a file
semantic-release-bot 59b3f9db12 chore(release): 1.0.0 [skip ci]
# 1.0.0 (2026-05-01)

### Features

* First release ([d0af399](d0af39970a))
2026-05-01 17:32:40 +00:00
.github/workflows feat: First release 2026-05-01 19:28:27 +02:00
defaults feat: First release 2026-05-01 19:28:27 +02:00
meta feat: First release 2026-05-01 19:28:27 +02:00
molecule/default feat: First release 2026-05-01 19:28:27 +02:00
tasks feat: First release 2026-05-01 19:28:27 +02:00
.ansible-lint feat: First release 2026-05-01 19:28:27 +02:00
.cicd feat: First release 2026-05-01 19:28:27 +02:00
.cicd.overwrite feat: First release 2026-05-01 19:28:27 +02:00
.collections feat: First release 2026-05-01 19:28:27 +02:00
.gitignore feat: First release 2026-05-01 19:28:27 +02:00
.releaserc.yml feat: First release 2026-05-01 19:28:27 +02:00
.roles feat: First release 2026-05-01 19:28:27 +02:00
.yamllint feat: First release 2026-05-01 19:28:27 +02:00
CHANGELOG.md chore(release): 1.0.0 [skip ci] 2026-05-01 17:32:40 +00:00
README.md feat: First release 2026-05-01 19:28:27 +02:00

CI

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_path to 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