puppet-gerrit/spec/acceptance/fixtures/preconditions.pp
Glauco Oliveira f36dd91325 Setup preconditions for acceptance tests.
We split the definition of the module under test from its preconditions.

This behaviour was identified while testing puppet-zuul. To keep it
consistent across projects, we decided to also apply the same logic on
this module.

Change-Id: I0b9014ce6470d5c142ab6a3b281ea7401f88e738
Co-Authored-By: Bruno Tavares <btavare@thoughtworks.com>
Co-Authored-By: Danilo Ramalho <dramalho@thoughtworks.com>
2015-09-30 18:38:46 -03:00

45 lines
1.0 KiB
Puppet

# Installing ssl-cert in order to get snakeoil certs
package { 'ssl-cert':
ensure => present,
}
# method to create ssh directory
define create_ssh_key_directory() {
Exec { path => '/bin:/usr/bin' }
exec { "create temporary ${name} directory":
command => "mkdir -p ${name}",
}
}
# method to generate key
define ssh_keygen (
$ssh_directory = undef
) {
Exec { path => '/bin:/usr/bin' }
$ssh_key_file = "${ssh_directory}/${name}"
exec { "ssh-keygen for ${name}":
command => "ssh-keygen -t rsa -f ${ssh_key_file} -N ''",
creates => $ssh_key_file,
}
}
$ssh_key_directory = '/tmp/gerrit-ssh-keys'
file { $ssh_key_directory:
ensure => directory,
}
ssh_keygen {'ssh_rsa_key':
ssh_directory => $ssh_key_directory,
require => File[$ssh_key_directory],
}
ssh_keygen {'ssh_project_rsa_key':
ssh_directory => $ssh_key_directory,
require => File[$ssh_key_directory],
}
ssh_keygen {'ssh_replication_rsa_key':
ssh_directory => $ssh_key_directory,
require => File[$ssh_key_directory],
}