Displaying 1 result from an estimated 1 matches for "clavis".
Did you mean:
claris
2013 May 20
10
Problem creating user with Puppet
Hi,
(Since I am relatively new to Puppet, this might be some trivial problem)
I am trying to create a user with Puppet, using following code:
user { "clavis":
ensure => "present",
home => "/home/clavis",
name => "clavis",
shell => "/bin/bash",
managehome => true,
}
User is created properly, but home direct...