Hey Guys,
I am wanting to add certain users to certain hosts. I was thinking of listing it in my users module. Here is an example:
user {'llane':
ensure => present,
}else{
ensure => absent,
}
home => '/home/llane',
managehome => true,
uid => '1003',
shell => '/bin/bash',
comment => 'Lois Lane',
}
However Puppet is saying I can't do it because of a syntax error. To me the code looks correct, but I may be just tired and not noticing the error. Any suggestions? Thanks
- Philippe