Title: Message Title
Charlie Sharpsteen commented on an issue
Puppet / Bug PUP-1347
AIX user provider changes gecos field on every run if comment is ''
if you define the following test class

user { 'aixtest':
  comment => '',
}

puppet is going to change the geocs (comment) field on every run, executing `chuser gecos= aixtest`.
this happens because

lsuser -c aixtest

does not include the gecos field if it is empty. just change the class to

user { 'aixtest':
  comment => 'aixtest',
}
...


--
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.

Reply via email to