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
c0eff23d
Commit
c0eff23d
authored
6 years ago
by
Thomas Woerner
Browse files
Options
Downloads
Patches
Plain Diff
ipareplica: Drop debugging remain show_obj
parent
4784be9b
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
module_utils/ansible_ipa_replica.py
+0
-16
0 additions, 16 deletions
module_utils/ansible_ipa_replica.py
roles/ipareplica/library/ipareplica_setup_ds.py
+0
-1
0 additions, 1 deletion
roles/ipareplica/library/ipareplica_setup_ds.py
with
0 additions
and
17 deletions
module_utils/ansible_ipa_replica.py
+
0
−
16
View file @
c0eff23d
...
...
@@ -162,20 +162,6 @@ class AnsibleModuleLog():
# self.module.debug(msg)
self
.
module
.
warn
(
msg
)
def
show_obj
(
obj
):
s
=
"
%s = {
"
%
obj
.
__class__
for
key
in
dir
(
obj
):
#if key in [ "__class__", "__dict__" ]:
# continue
if
key
.
startswith
(
"
--
"
)
and
key
.
endswith
(
"
--
"
):
continue
if
not
hasattr
(
obj
,
key
):
continue
value
=
getattr
(
obj
,
key
)
if
callable
(
value
):
continue
s
+=
"
'
%s
'
: %s,
"
%
(
key
,
repr
(
value
))
logger
.
info
(
s
+
"
}
"
)
class
installer_obj
(
object
):
def
__init__
(
self
):
...
...
@@ -310,8 +296,6 @@ def gen_ReplicaConfig():
config
.
basedn
=
api
.
env
.
basedn
#config.subject_base = options.subject_base
#show_obj(config)
return
config
...
...
This diff is collapsed.
Click to expand it.
roles/ipareplica/library/ipareplica_setup_ds.py
+
0
−
1
View file @
c0eff23d
...
...
@@ -318,7 +318,6 @@ def main():
ca_file
=
cafile
,
promote
=
promote
,
pkcs12_info
=
dirsrv_pkcs12_info
)
#show_obj(ds)
ansible_log
.
debug
(
"
-- INSTALL DNS RECORDS --
"
)
# Always try to install DNS records
...
...
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