From 18e1866ac5ce52348c3f04cd252860bd8f9f22bc Mon Sep 17 00:00:00 2001 From: Pandu E Poluan Date: Tue, 24 Jan 2017 01:43:04 +0700 Subject: [PATCH] Update pillar.example `pillar.example` now contains information on how to use the 'string-or-list' feature for some options. Also an explanation on the new `ConfigBanner` option. --- pillar.example | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pillar.example b/pillar.example index 9a5b035..923438a 100644 --- a/pillar.example +++ b/pillar.example @@ -1,4 +1,9 @@ sshd_config: + # This keyword is totally optional + ConfigBanner: | + # Alternative banner for the config file + # (Indented) hash signs lose their special meaning here + # and the lines will be written as-is. Port: 22 Protocol: 2 HostKey: @@ -53,9 +58,14 @@ sshd_config: AllowTcpForwarding: no ForceCommand: internal-sftp # Check `man sshd_config` for supported KexAlgorithms, Ciphers and MACs first. - KexAlgorithms: 'diffie-hellman-group14-sha1,diffie-hellman-group1-sha1' + # For these three keywords, the options may be specified as a list... + KexAlgorithms: + - diffie-hellman-group14-sha1 + - diffie-hellman-group1-sha1 + # ... or a single string. Ciphers: 'aes128-ctr,aes256-ctr' MACs: 'hmac-sha1' + # Similar situation for ssh_config ssh_config: StrictHostKeyChecking: no