mirror of
https://github.com/de-it-krachten/ansible-role-cryptomator
synced 2026-05-14 11:41:54 +00:00
No description
- Jinja 100%
# [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 ([ |
||
|---|---|---|
| .github/workflows | ||
| defaults | ||
| files | ||
| meta | ||
| molecule/default | ||
| tasks | ||
| templates | ||
| .ansible-lint | ||
| .cicd | ||
| .cicd.overwrite | ||
| .collections | ||
| .gitignore | ||
| .releaserc.yml | ||
| .roles | ||
| .yamllint | ||
| CHANGELOG.md | ||
| README.md | ||
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