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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Ansible FreeIPA
Commits
12078667
Commit
12078667
authored
7 years ago
by
Thomas Woerner
Browse files
Options
Downloads
Patches
Plain Diff
library/ipadiscovery: Drop unused check parameter
parent
a7e78597
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
library/ipadiscovery.py
+0
-8
0 additions, 8 deletions
library/ipadiscovery.py
roles/ipaclient/tasks/install.yml
+1
-2
1 addition, 2 deletions
roles/ipaclient/tasks/install.yml
with
1 addition
and
10 deletions
library/ipadiscovery.py
+
0
−
8
View file @
12078667
...
@@ -52,12 +52,6 @@ options:
...
@@ -52,12 +52,6 @@ options:
ca_cert_file:
ca_cert_file:
description: A CA certificate to use.
description: A CA certificate to use.
required: false
required: false
check:
description: Check if IPA client is installed and matching.
required: false
default: false
type: bool
default: no
author:
author:
- Thomas Woerner
- Thomas Woerner
'''
'''
...
@@ -210,7 +204,6 @@ def main():
...
@@ -210,7 +204,6 @@ def main():
realm
=
dict
(
required
=
False
),
realm
=
dict
(
required
=
False
),
hostname
=
dict
(
required
=
False
),
hostname
=
dict
(
required
=
False
),
ca_cert_file
=
dict
(
required
=
False
),
ca_cert_file
=
dict
(
required
=
False
),
check
=
dict
(
required
=
False
,
type
=
'
bool
'
,
default
=
False
),
),
),
supports_check_mode
=
True
,
supports_check_mode
=
True
,
)
)
...
@@ -221,7 +214,6 @@ def main():
...
@@ -221,7 +214,6 @@ def main():
opt_realm
=
module
.
params
.
get
(
'
realm
'
)
opt_realm
=
module
.
params
.
get
(
'
realm
'
)
opt_hostname
=
module
.
params
.
get
(
'
hostname
'
)
opt_hostname
=
module
.
params
.
get
(
'
hostname
'
)
opt_ca_cert_file
=
module
.
params
.
get
(
'
ca_cert_file
'
)
opt_ca_cert_file
=
module
.
params
.
get
(
'
ca_cert_file
'
)
opt_check
=
module
.
params
.
get
(
'
check
'
)
hostname
=
None
hostname
=
None
hostname_source
=
None
hostname_source
=
None
...
...
This diff is collapsed.
Click to expand it.
roles/ipaclient/tasks/install.yml
+
1
−
2
View file @
12078667
...
@@ -17,8 +17,7 @@
...
@@ -17,8 +17,7 @@
servers
:
"
{{
groups.ipaservers
|
default(omit)
}}"
servers
:
"
{{
groups.ipaservers
|
default(omit)
}}"
realm
:
"
{{
ipaclient_realm
|
default(omit)
}}"
realm
:
"
{{
ipaclient_realm
|
default(omit)
}}"
hostname
:
"
{{
ipaclient_hostname
|
default(ansible_fqdn)
}}"
hostname
:
"
{{
ipaclient_hostname
|
default(ansible_fqdn)
}}"
#ca_cert_file: "{{ ipaclient_ca_cert_file | default(omit) }}"
ca_cert_file
:
"
{{
ipaclient_ca_cert_file
|
default(omit)
}}"
check
:
yes
register
:
ipadiscovery
register
:
ipadiscovery
-
name
:
Install - Set default principal if no keytab is given
-
name
:
Install - Set default principal if no keytab is given
...
...
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