Skip to content

Commit 5cfa6e6

Browse files
committed
Add a variable for ssh config directory
1 parent 121e5c4 commit 5cfa6e6

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

manifests/params.pp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
debian: {
44
$server_package_name = 'openssh-server'
55
$client_package_name = 'openssh-client'
6+
$sshd_dir = '/etc/ssh'
67
$sshd_config = '/etc/ssh/sshd_config'
78
$ssh_config = '/etc/ssh/ssh_config'
89
$ssh_known_hosts = '/etc/ssh/ssh_known_hosts'
@@ -11,6 +12,7 @@
1112
redhat: {
1213
$server_package_name = 'openssh-server'
1314
$client_package_name = 'openssh-clients'
15+
$sshd_dir = '/etc/ssh'
1416
$sshd_config = '/etc/ssh/sshd_config'
1517
$ssh_config = '/etc/ssh/ssh_config'
1618
$ssh_known_hosts = '/etc/ssh/ssh_known_hosts'
@@ -21,6 +23,7 @@
2123
gentoo: {
2224
$server_package_name = 'openssh'
2325
$client_package_name = 'openssh'
26+
$sshd_dir = '/etc/ssh'
2427
$sshd_config = '/etc/ssh/sshd_config'
2528
$ssh_config = '/etc/ssh/ssh_config'
2629
$ssh_known_hosts = '/etc/ssh/ssh_known_hosts'

0 commit comments

Comments
 (0)