Skip to content
Snippets Groups Projects
Select Git revision
  • 1dc0d96b9ebbef5987e8230b36a2b4e78dc93915
  • master default protected
  • hsh-2025073100
  • hsh-2025012100
  • hsh-2024111900
  • hsh-2024072400
  • hsh-2024060300
  • hsh-2024012900
  • hsh-2023121100
  • hsh-v1.1.9
  • hsh-v1.1.7
11 results

README.md

Blame
  • To learn more about this project, read the wiki.
    packages.sls 354 B
    # Always install these packages
    {% if grains['os'] in ['Debian', 'Ubuntu'] %}
    hsh_common_packages_salt:
      pkg.installed:
        - pkgs:
          - git
          - rsync
          - nload
          - etckeeper
          - lsof
          - traceroute
          - vim
    
    {% elif grains['os'] == 'FreeBSD' %}
    hsh_common_packages_salt:
      pkg.installed:
        - pkgs:
          - lsof
    
    {% endif %}