No description
Find a file
semantic-release-bot a36b0ddf5a chore(release): 1.6.0 [skip ci]
# [1.6.0](https://github.com/de-it-krachten/ansible-role-cryptomator/compare/v1.5.0...v1.6.0) (2026-03-15)

### Features

* Added support for Fedora 43 ([555a060](555a060b75))
* Drop support for Fedora 41 ([17236d2](17236d25e9))
* Drop support for openSUSE Leap 15 ([cc8e1b4](cc8e1b4a29))
* Drop support for SUSE Linux Enterprise 15 ([ae3813f](ae3813fda2))
2026-03-15 11:37:02 +00:00
.github/workflows Update CI 2026-03-14 19:25:44 +01:00
defaults fix: Show better mesage when package could not be found 2024-10-22 15:13:57 +02:00
files feat: Initial release 2023-04-30 00:31:31 +02:00
meta Update CI 2026-03-14 19:25:44 +01:00
molecule/default Update CI 2026-03-14 19:25:44 +01:00
tasks Fix linting issue 2025-08-05 11:07:05 +02:00
templates feat: Initial release 2023-04-30 00:31:31 +02:00
.ansible-lint feat: Initial release 2023-04-30 00:31:31 +02:00
.cicd Update CI 2026-03-06 22:31:35 +01: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.6.0 [skip ci] 2026-03-15 11:37:02 +00:00
README.md Update CI 2026-03-14 19:25:44 +01: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
  • Fedora 42
  • Fedora 43

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_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