No description
Find a file
semantic-release-bot aa572014ee chore(release): 1.7.0 [skip ci]
# [1.7.0](https://github.com/de-it-krachten/ansible-role-cryptomator/compare/v1.6.0...v1.7.0) (2026-07-26)

### Features

* Add support for ansible-core 2.20+ ([686715c](686715cba1))
* Added support for Fedora 44 ([0478320](0478320e80))
* Added support for Ubuntu 26.04 LTS ([713bd96](713bd96e39))
* Drop support for Fedora 42 ([93c7698](93c7698532))
2026-07-26 19:53:45 +00:00
.github/workflows Update CI 2026-07-23 13:51:06 +02:00
defaults feat: Add support for ansible-core 2.20+ 2026-06-07 20:43:28 +02:00
files feat: Initial release 2023-04-30 00:31:31 +02:00
meta Update CI 2026-06-07 16:47:26 +02:00
molecule/default Update CI 2026-07-25 17:12:16 +02:00
tasks feat: Add support for ansible-core 2.20+ 2026-06-07 20:43:28 +02:00
templates feat: Initial release 2023-04-30 00:31:31 +02:00
.ansible-lint Update CI 2026-06-07 16:47:26 +02:00
.cicd Update CI 2026-06-09 10:49:17 +02:00
.cicd.overwrite Update CI 2026-03-14 19:25:44 +01:00
.collections feat: Add support for Ubuntu 24.04 LTS + Fedora 40 2024-05-31 22:55:30 +02:00
.gitignore feat: Update supported platforms & CI 2024-12-29 01:47:07 +01:00
.releaserc.yml Update CI 2026-03-06 22:31:35 +01:00
.roles feat: Initial release 2023-04-30 00:31:31 +02:00
.yamllint Update CI 2024-11-05 00:12:57 +01:00
CHANGELOG.md chore(release): 1.7.0 [skip ci] 2026-07-26 19:53:45 +00:00
README.md Update CI 2026-06-08 13:10:28 +02:00

CI

ansible-role-cryptomator

Installs Cryptomator - Cloud Storage Encryption Utility
https://cryptomator.org
https://github.com/cryptomator/cryptomator

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 20.04 LTS
  • Ubuntu 22.04 LTS
  • Ubuntu 24.04 LTS
  • Ubuntu 26.04 LTS
  • Fedora 43
  • Fedora 441

Note: 1 : no automated testing is performed on these platforms

Role Variables

defaults/main.yml


# Github CLI - API
cryptomator_api: https://api.github.com/repos/cryptomator/cryptomator

# Github CLI - repo
cryptomator_repo: https://github.com/cryptomator/cryptomator

# Lookup table for architecture
cryptomator:
  architecture:
    x86_64: amd64
    i386: i386
    armv6l: arm
    armv7l: arm
    aarch64: arm64
  system:
    Linux: linux
    Darwin: darwin

# Construct filename based on the system & architecture
cryptomator_file: "cryptomator-{{ cryptomator_version | regex_replace('^v') }}-{{ ansible_facts.architecture }}.AppImage"

cryptomator_version_command: >-
  {{ cryptomator_path }} --version | awk '/Cryptomator version/ {print $3}'

# Version of the CLI to install
cryptomator_version: latest

# Location/ownership/permissions of the binary
cryptomator_path: /usr/local/bin/cryptomator
cryptomator_owner: root
cryptomator_group: root
cryptomator_mode: '0755'

Example Playbook

molecule/default/converge.yml


- name: sample playbook for role 'cryptomator' pre playbook
  ansible.builtin.import_playbook: converge-pre.yml
  when: molecule_converge_pre is undefined or molecule_converge_pre | bool
- name: sample playbook for role 'cryptomator'
  hosts: all
  become: 'yes'
  vars:
    molecule_driver: '{{ lookup(''env'', ''MOLECULE_DRIVER_NAME'') }}'
    cryptomator_version: 1.9.3
  tasks:
    - name: Include role 'cryptomator'
      ansible.builtin.include_role:
        name: cryptomator