Saltstack Official OpenSSH Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
603B

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. #
  4. # Setup variables specific to salt['config.get']('os_family') == OpenBSD.
  5. # You just need to add the key:values for this `os_family` that differ
  6. # from `defaults.yaml` + `<osarch>.yaml`.
  7. #
  8. # If you do not need to provide defaults via the `os_family` config,
  9. # you can remove this file or provide at least an empty dict, e.g.
  10. # values: {}
  11. ---
  12. values:
  13. openssh:
  14. service: sshd
  15. # Already installed: `base68:/usr/bin/dig`
  16. dig_pkg: ~
  17. sshd_config_group: wheel
  18. ssh_config_group: wheel
  19. sshd_config:
  20. Subsystem: sftp /usr/libexec/sftp-server
  21. ...