Rémi Ferrand
Rémi Ferrand
KDC daemon already support dropping capabilities (using capng if available). This patch only moves function `kdc/main/switch_environment()` to `lib/base/heimbase/heim_switch_environment()`. This way, KDC and KPASSWDD daemons share the same routine to manage...
Sample usage could be ``` puppet etc_services { 'remctl': ensure => present, protocol => 'tcp', port => '4373', comment => 'Remote Authenticated Command Service', } ```
##### Checklist - [x] unit and/or integration tests are included (if applicable) - [x] documentation is changed or added (if applicable) ### Description of change This P.R adds ability to...
In the `gen` tool, attributes starting with `memberofindirect_` (like `memberofindirect_role`) should also be considered Multivalued. I've regenerated the _interfaces_ with this new patch applied. Tell me if you want me...
This is in continuation of #1 I've added more error context and handled more unauthorized login reasons. This is still missing tests but I'd like your opinion about this new...
Add support for logging in using Kerberos Keytab ( see #5 ) This is a first implementation to start the discussion. I've added an example of how to use this...
This _P.R_ allows `get_cwd()` function to return an array. My motivation is to use a custom `get_cwd()` function such as ```lua get_cwd = function(params) return { vim.fn.expand(('#%d:p:h'):format(params.context.bufnr)), -- default value...
## Context I'm trying to create a _build helper_ for multiple tools. The command hierarchy would be such as: ``` $ mycmd build tool1 $ mycmd build tool2 ``` I...
##### SUMMARY I'm trying to add a new _usergroup_ member to an `ipa_sudorule` using GSSAPI auth. This is working fine. The problem occured when I've tried to add a _usergroup_...
`vagrant` allows to specify a custom _SSH configuration file_ with ```ruby Vagrant.configure("2") do |config| config.ssh.config = ".ssh/config" [...] end ``` This patch makes `scp` use this custom _SSH configuration file_