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