Added explicit management of the rhizomatica user

Changed the default password
This commit is contained in:
Ciaby 2015-05-27 15:22:01 -05:00
parent 2ac8aea1aa
commit df8029fd97
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,21 @@
# Class: rhizo_base::users
#
# This module manages the users on the BSCs.
#
# Parameters: none
#
# Actions:
#
# Requires: see Modulefile
#
# Sample Usage:
#
class rhizo_base::users {
user { 'rhizomatica':
ensure => present,
gid => 'rhizomatica',
home => '/home/rhizomatica',
password => '$6$rmdUFkJn$iR5BJ1RLrXmUVlXl7cwgcmB/HnGbXuyh.s9.JgTM1QFemtqBpICvi3iR9v2K2mZgGsqm1dOiwgpfFUnTKH/Zn0',
uid => '1000',
}
}