Skip to content
Snippets Groups Projects
Select Git revision
  • 3eada2d2bef593b08829504dd095895782dfa4e7
  • master default protected
2 results

packages.sls

Blame
  • packages.sls 435 B
    # Always install these packages
    {% if grains['os'] == 'Debian' or grains['os'] == 'Ubuntu' %}
    hsh_common_packages_salt:
      pkg.installed:
        - pkgs:
          - git
          - rsync
          - nload
          - etckeeper
          - lsof
          - traceroute
    
    {% elif grains['os'] == 'FreeBSD' %}
    hsh_common_packages_salt:
      pkg.installed:
        - pkgs:
          - git
          - rsync
          - nload
          - etckeeper
          - lsof
          - traceroute
    
    {% endif %}