forked from redhat-openstack/openstack-puppet-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# == Define: ssh::server::host_key | ||
# | ||
# This module install a ssh host key in the server (basically, it is | ||
# a file resource but it also notifies to the ssh service) | ||
# | ||
# Important! This define does not modify any option in sshd_config, so | ||
# you have to manually define the HostKey option in the server options | ||
# if you haven't done yet. | ||
# | ||
# == Parameters | ||
# | ||
# [*ensure*] | ||
# Set to 'absent' to remove host_key files | ||
# | ||
# [*public_key_source*] | ||
# Sets the content of the source parameter for the public key file | ||
# Note public_key_source and public_key_content are mutually exclusive. | ||
# | ||
# [*public_key_content*] | ||
# Sets the content for the public key file. | ||
# Note public_key_source and public_key_content are mutually exclusive. | ||
# | ||
# [*private_key_source*] | ||
# Sets the content of the source parameter for the private key file | ||
# Note private_key_source and private_key_content are mutually exclusive. | ||
# | ||
# [*private_key_content*] | ||
# Sets the content for the private key file. | ||
# Note private_key_source and private_key_content are mutually exclusive. | ||
# | ||
define ssh::server::host_key ( | ||
$ensure = 'present', | ||
$public_key_source = '', | ||
$public_key_content = '', | ||
$private_key_source = '', | ||
$private_key_content = '', | ||
) { | ||
if $public_key_source == '' and $public_key_content == '' { | ||
fail("You must provide either public_key_source or public_key_content parameter") | ||
} | ||
if $private_key_source == '' and $private_key_content == '' { | ||
fail("You must provide either private_key_source or private_key_content parameter") | ||
} | ||
|
||
$manage_pub_key_content = $public_key_source ? { | ||
'' => $public_key_content, | ||
default => undef, | ||
} | ||
$manage_pub_key_source = $public_key_source ? { | ||
'' => undef, | ||
default => $public_key_source, | ||
} | ||
|
||
$manage_priv_key_content = $private_key_source ? { | ||
'' => $private_key_content, | ||
default => undef, | ||
} | ||
$manage_priv_key_source = $private_key_source ? { | ||
'' => undef, | ||
default => $private_key_source, | ||
} | ||
|
||
file {"${name}_pub": | ||
ensure => $ensure, | ||
owner => 'root', | ||
group => 'root', | ||
mode => '0644', | ||
path => "${::ssh::params::sshd_dir}/${name}.pub", | ||
source => $manage_pub_key_source, | ||
content => $manage_pub_key_content, | ||
notify => Class['ssh::server::service'], | ||
} | ||
|
||
file {"${name}_priv": | ||
ensure => $ensure, | ||
owner => 'root', | ||
group => 'root', | ||
mode => '0600', | ||
path => "${::ssh::params::sshd_dir}/${name}", | ||
source => $manage_priv_key_source, | ||
content => $manage_priv_key_content, | ||
notify => Class['ssh::server::service'], | ||
} | ||
} |