Enable root login on single use slaves

Since glean only configures the ssh key for the root
user on instances, this is needed so that the nodepool
generated images can be used by users who don't have their
ssh keys baked into the image.

Change-Id: Id09c63920b5565e1cc011eb98cfb132a11060bcc
Depends-On: I704453c6d3091a24e68509650c61efb638aea601
This commit is contained in:
Derek Higgins 2016-07-08 23:47:31 +01:00 committed by James E. Blair
parent 695cda8fee
commit bc9c1c8cc8
2 changed files with 3 additions and 0 deletions

View File

@ -26,6 +26,7 @@ class openstack_project::single_use_slave (
install_users => $install_users,
install_resolv_conf => $install_resolv_conf,
enable_unbound => $enable_unbound,
permit_root_login => 'yes',
iptables_rules4 =>
[
# Ports 69 and 6385 allow to allow ironic VM nodes to reach tftp and

View File

@ -21,6 +21,7 @@ class openstack_project::template (
$sysadmins = [],
$pypi_index_url = 'https://pypi.python.org/simple',
$purge_apt_sources = false,
$permit_root_login = 'no',
) {
###########################################################
@ -35,6 +36,7 @@ class openstack_project::template (
class { 'ssh':
trusted_ssh_source => $puppetmaster_server,
permit_root_login => $permit_root_login,
}
if ( $afs ) {