No description
Find a file
2014-12-22 10:05:09 +00:00
defaults Add EL6 defaults 2014-12-22 10:05:09 +00:00
handlers Initial commit 2014-12-18 22:12:51 +00:00
meta Ordering issues 2014-12-22 09:41:32 +00:00
tasks Add EL6 defaults 2014-12-22 10:05:09 +00:00
templates Ordering issues 2014-12-22 09:41:32 +00:00
vars Add EL6 defaults 2014-12-22 10:05:09 +00:00
README.md Update with dict option 2014-12-21 20:42:00 +00:00

Ansible OpenSSH Daemon Role

This role configures OpenSSH. It:

  • By default, with no set options, creates an empty configuration file.
  • Can use a dict of the form:
sshd:
  Compression: delayed
  ListenAddress:
    - 0.0.0.0
    - ::
  • Can also use scalar variables of the form sshd_ListenAddress
  • Scalar override dict values.
  • Allows the use of booleans for keys with yes/no values, including those with additional non-boolean values such as Compression, which has the additional delayed option
  • Tests the sshd_config before reloading sshd
  • Template is programmatically generated. See the files in the meta folder.

It should cover all valid SSH options.