k3s/cluster/saltbase/salt/base.sls

21 lines
537 B
Plaintext
Raw Normal View History

2014-06-06 23:40:48 +00:00
pkg-core:
2014-08-12 20:10:59 +00:00
pkg.installed:
2014-06-06 23:40:48 +00:00
- names:
- curl
{% if grains['os_family'] == 'RedHat' %}
- python
- git
- glusterfs-fuse
{% else %}
2014-06-06 23:40:48 +00:00
- apt-transport-https
- python-apt
- glusterfs-client
- socat
{% endif %}
# Ubuntu installs netcat-openbsd by default, but on GCE/Debian netcat-traditional is installed.
# They behave slightly differently.
# For sanity, we try to make sure we have the same netcat on all OSes (#15166)
{% if grains['os'] == 'Ubuntu' %}
- netcat-traditional
{% endif %}