add nextcloud package

This commit is contained in:
Matthew Stobbs
2025-02-08 17:04:05 -07:00
parent 589339357f
commit 62f7245953

16
tasks/pkgs/nextcloud.yml Normal file
View File

@@ -0,0 +1,16 @@
---
- name: append to flatpkgs
block:
- ansible.builtin.include_tasks:
file: pkgs/flatpak.yml
when: pkgconfig_flatpak is undefined
- ansible.builtin.set_fact:
flatpkgs: "{{ flatpkgs + [ 'com.nextcloud.desktopclient.nextcloud' ] }}"
when:
- ansible_os_famly != 'Darwin'
- name: append to caskpkgs
ansible.builtin.set_fact:
caskpkgs: "{{ caskpkgs + [ 'nextcloud' ] }}"
when: ansible_os_family == 'Darwin'