Files
states/softwares/nextcloud-client.sls
Iwan Clément e63cbada37 repo OK
2019-02-19 11:03:48 +00:00

22 lines
674 B
Plaintext

{% if grains['kernel'] == 'Linux' %}
{% if grains['os_family'] == 'RedHat' %}
'Redhat Nextcloud Client installation':
pkg.installed:
- pkgs:
- libgnome-keyring
- nextcloud-client
{% elif grains['os_family'] == 'Debian' %}
'Debian Nextcloud client repo':
pkgrepo.managed:
- name: 'deb http://ppa.launchpad.net/nextcloud-devs/client/ubuntu bionic main'
- humanname: Nextcloud-client Repository
- file: /etc/apt/sources.list.d/nextcloud-devs.list
# deb http://ppa.launchpad.net/nextcloud-devs/client/ubuntu bionic main
'Debian Nextcloud Client installation':
pkg.installed:
- pkgs:
- nextcloud-client
{% endif %}
{% endif %}