48d3f75e21
As per nomination on http://lists.openstack.org/pipermail/openstack-dev/2015-June/066628.html I have read the system-config ssh-access[0] documentation and agree to fully adhere to it. [0] http://docs.openstack.org/infra/system-config/sysadmin.html#ssh-access Change-Id: Iec943364a51d9d55b8dfd2fae97576efb37a1226
50 lines
1.4 KiB
Puppet
50 lines
1.4 KiB
Puppet
# Class: openstack_project::users_install
|
|
#
|
|
# This class handles adding and removing openstack admin users
|
|
# from the servers.
|
|
#
|
|
# Parameters:
|
|
# install_users - Boolean to set install or removal of O.O
|
|
# admins. Defaults to 'false', can be set in hiera.
|
|
#
|
|
# Requires:
|
|
# openstack_project::users - must contain the users designated.
|
|
#
|
|
# Sample Usage:
|
|
# include openstack_project::users_install
|
|
# class { 'openstack_project::users_install':
|
|
# install_users => true,
|
|
# }
|
|
|
|
class openstack_project::users_install (
|
|
$install_users = false,
|
|
) {
|
|
|
|
include openstack_project::users
|
|
|
|
## TODO: this should be it's own manifest.
|
|
if ( $install_users == true ) {
|
|
package { $::openstack_project::params::user_packages:
|
|
ensure => present
|
|
}
|
|
realize (
|
|
User::Virtual::Localuser['mordred'],
|
|
User::Virtual::Localuser['corvus'],
|
|
User::Virtual::Localuser['clarkb'],
|
|
User::Virtual::Localuser['fungi'],
|
|
User::Virtual::Localuser['slukjanov'],
|
|
User::Virtual::Localuser['elizabeth'],
|
|
User::Virtual::Localuser['jhesketh'],
|
|
)
|
|
} else {
|
|
user::virtual::disable{'mordred':}
|
|
user::virtual::disable{'corvus':}
|
|
user::virtual::disable{'clarkb':}
|
|
user::virtual::disable{'fungi':}
|
|
user::virtual::disable{'slukjanov':}
|
|
user::virtual::disable{'elizabeth':}
|
|
user::virtual::disable{'jhesketh':}
|
|
}
|
|
}
|
|
|