Files
states/softwares/nextcloud-client.sls
Iwan Clément 1777ca6c05 fix keyid
2019-03-02 14:04:04 +01:00

24 lines
787 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
- keyid: 0x1FCD77DD0DBEF5699AD2610160EE47FBAD3DD469
# - keyid: 0x1FCD77DD0DBEF5699AD2610160EE47FBAD3DD469
# deb http://ppa.launchpad.net/nextcloud-devs/client/ubuntu bionic main
'Debian Nextcloud Client installation':
pkg.installed:
- pkgs:
- nextcloud-client
{% endif %}
{% endif %}