Tomas Barton

Results 165 comments of Tomas Barton

@tpdownes Interesting, thanks for the link. So far it seems to be working fine. Any chance to release your fork with updated documentation?

@Wang-Kai When generating certificate using e.g. ``` cfssl gencert -ca=ca.pem -ca-key=ca-key.pem -config=ca-conf.json -profile server ... ``` you can pass `ca-conf.json` with something like this ```json { "signing": { "default": {...

@mtrmac I understand that you're trying to find a universal solution and some rewrite schemes might be very complex. But the basic usage might be: 1. Copy multiple registries to...

Same issue on `4.19.0`, running with `sudo` doesn't help.

Any chance to update the plugin? I can't replicate the same histogram with the official histogram panel. GROUP BY doesn't really work, only count is shown in histograms.

From `man usermod`: ``` CAVEATS You must make certain that the named user is not executing any processes when this command is being executed if the user's numerical user ID,...

Could you post a code sample you're using? The error message comes from [this line](https://github.com/deric/puppet-accounts/blob/master/manifests/user.pp#L75). The idea was to simplify debugging when users are using the module in ways for...

There were quite many changes in the providers API, which makes it hard to refactor the code without breaking functionality. I'll try to have a look at this.

@kmarcroft If you're starting from scratch I'd recommend having a look at official [puppet-accounts](https://github.com/puppetlabs/puppetlabs-accounts). The module is completely rewritten and tested against Puppet 6. It evolved a lot since I've...

@tnail Just to be on the same page, you're config looks basically like this, right? ```yaml accounts::groups: appadmin: ensure: present members: ['user1', 'user2', 'user3', 'user4'] accounts::users: va-user: groups: ['appadmin'] ```...