mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-08-01 20:34:41 +00:00
Add subid option to select the sssd profile with-subid.
This is an ansible-freeipa update for the freeipa RFE: https://pagure.io/freeipa/issue/9159 "`ipa-client-install` should provide option to enable `subid: sss` in `/etc/nsswitch.conf`". This option allows to configure authselect with the sssd profile + with-subid feature, in order to have SSSD setup as a datasource for subid in /etc/nsswitch.conf. The default behavior remains unchanged: without the option, /etc/nsswitch.conf keeps the line subid: files Signed-off-by: Denis Karpelevich <dkarpele@redhat.com>
This commit is contained in:
@@ -125,6 +125,10 @@ options:
|
||||
description: Do not configure SSSD as data source for sudo
|
||||
type: bool
|
||||
required: no
|
||||
subid:
|
||||
description: Configure SSSD as data source for subid
|
||||
type: bool
|
||||
required: no
|
||||
fixed_primary:
|
||||
description: Configure sssd to use fixed server as primary IPA server
|
||||
type: bool
|
||||
@@ -208,6 +212,7 @@ def main():
|
||||
no_ssh=dict(required=False, type='bool'),
|
||||
no_sshd=dict(required=False, type='bool'),
|
||||
no_sudo=dict(required=False, type='bool'),
|
||||
subid=dict(required=False, type='bool'),
|
||||
fixed_primary=dict(required=False, type='bool'),
|
||||
permit=dict(required=False, type='bool'),
|
||||
no_krb5_offline_passwords=dict(required=False, type='bool'),
|
||||
@@ -251,6 +256,7 @@ def main():
|
||||
options.conf_sshd = not options.no_sshd
|
||||
options.no_sudo = module.params.get('no_sudo')
|
||||
options.conf_sudo = not options.no_sudo
|
||||
options.subid = module.params.get('subid')
|
||||
options.primary = module.params.get('fixed_primary')
|
||||
options.permit = module.params.get('permit')
|
||||
options.no_krb5_offline_passwords = module.params.get(
|
||||
@@ -430,19 +436,17 @@ def main():
|
||||
# Modify nsswitch/pam stack
|
||||
# pylint: disable=deprecated-method
|
||||
argspec = getargspec(tasks.modify_nsswitch_pam_stack)
|
||||
the_options = {
|
||||
"sssd": options.sssd,
|
||||
"mkhomedir": options.mkhomedir,
|
||||
"statestore": statestore,
|
||||
}
|
||||
if "sudo" in argspec.args:
|
||||
tasks.modify_nsswitch_pam_stack(
|
||||
sssd=options.sssd,
|
||||
mkhomedir=options.mkhomedir,
|
||||
statestore=statestore,
|
||||
sudo=options.conf_sudo
|
||||
)
|
||||
else:
|
||||
tasks.modify_nsswitch_pam_stack(
|
||||
sssd=options.sssd,
|
||||
mkhomedir=options.mkhomedir,
|
||||
statestore=statestore
|
||||
)
|
||||
the_options["sudo"] = options.conf_sudo
|
||||
if "subid" in argspec.args:
|
||||
the_options["subid"] = options.subid
|
||||
|
||||
tasks.modify_nsswitch_pam_stack(**the_options)
|
||||
|
||||
if hasattr(paths, "AUTHSELECT") and paths.AUTHSELECT is not None:
|
||||
# authselect is used
|
||||
|
||||
Reference in New Issue
Block a user