Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Ansible FreeIPA
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Ansible FreeIPA
Commits
b26b223d
Commit
b26b223d
authored
7 years ago
by
Thomas Woerner
Browse files
Options
Downloads
Patches
Plain Diff
library/ipanss.py: principal option is optional
parent
e5b6eb23
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
library/ipanss.py
+3
-3
3 additions, 3 deletions
library/ipanss.py
with
3 additions
and
3 deletions
library/ipanss.py
+
3
−
3
View file @
b26b223d
...
@@ -52,7 +52,7 @@ options:
...
@@ -52,7 +52,7 @@ options:
required: true
required: true
principal:
principal:
description: The authorized kerberos principal used to join the IPA realm.
description: The authorized kerberos principal used to join the IPA realm.
required:
tru
e
required:
fals
e
subject_base:
subject_base:
description: The subject base, needed for certmonger
description: The subject base, needed for certmonger
required: true
required: true
...
@@ -115,7 +115,7 @@ def main():
...
@@ -115,7 +115,7 @@ def main():
realm
=
dict
(
required
=
True
),
realm
=
dict
(
required
=
True
),
hostname
=
dict
(
required
=
True
),
hostname
=
dict
(
required
=
True
),
basedn
=
dict
(
required
=
True
),
basedn
=
dict
(
required
=
True
),
principal
=
dict
(
required
=
Tru
e
),
principal
=
dict
(
required
=
Fals
e
),
subject_base
=
dict
(
required
=
True
),
subject_base
=
dict
(
required
=
True
),
ca_enabled
=
dict
(
required
=
True
,
type
=
'
bool
'
),
ca_enabled
=
dict
(
required
=
True
,
type
=
'
bool
'
),
mkhomedir
=
dict
(
required
=
False
),
mkhomedir
=
dict
(
required
=
False
),
...
@@ -137,9 +137,9 @@ def main():
...
@@ -137,9 +137,9 @@ def main():
mkhomedir
=
module
.
params
.
get
(
'
mkhomedir
'
)
mkhomedir
=
module
.
params
.
get
(
'
mkhomedir
'
)
on_master
=
module
.
params
.
get
(
'
on_master
'
)
on_master
=
module
.
params
.
get
(
'
on_master
'
)
###########################################################################
fstore
=
sysrestore
.
FileStore
(
paths
.
IPA_CLIENT_SYSRESTORE
)
fstore
=
sysrestore
.
FileStore
(
paths
.
IPA_CLIENT_SYSRESTORE
)
statestore
=
sysrestore
.
StateFile
(
paths
.
IPA_CLIENT_SYSRESTORE
)
statestore
=
sysrestore
.
StateFile
(
paths
.
IPA_CLIENT_SYSRESTORE
)
###########################################################################
###########################################################################
os
.
environ
[
'
KRB5CCNAME
'
]
=
CCACHE_FILE
os
.
environ
[
'
KRB5CCNAME
'
]
=
CCACHE_FILE
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment