Moved the rhizomatica password hash into the hiera config.

This commit is contained in:
Ciaby 2015-06-16 12:33:36 -05:00
parent 7478afded1
commit 40767ab2f2
2 changed files with 5 additions and 1 deletions

View file

@ -11,11 +11,14 @@
# Sample Usage:
#
class rhizo_base::users {
$password_hash = $rhizo::password_hash
user { 'rhizomatica':
ensure => present,
gid => 'rhizomatica',
home => '/home/rhizomatica',
password => '$6$rmdUFkJn$iR5BJ1RLrXmUVlXl7cwgcmB/HnGbXuyh.s9.JgTM1QFemtqBpICvi3iR9v2K2mZgGsqm1dOiwgpfFUnTKH/Zn0',
password => $rhizo::password_hash,
uid => '1000',
}
}