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
1ba0391f
Unverified
Commit
1ba0391f
authored
6 years ago
by
Thomas Woerner
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #52 from deblasis/master
Fixes #51 upstream
parents
b09e5889
3c952cdb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
roles/ipaclient/library/ipadiscovery.py
+2
-2
2 additions, 2 deletions
roles/ipaclient/library/ipadiscovery.py
roles/ipaserver/library/ipaserver_test.py
+1
-1
1 addition, 1 deletion
roles/ipaserver/library/ipaserver_test.py
with
3 additions
and
3 deletions
roles/ipaclient/library/ipadiscovery.py
+
2
−
2
View file @
1ba0391f
...
...
@@ -274,11 +274,11 @@ def main():
if
options
.
ntp_servers
and
options
.
no_ntp
:
module
.
fail_json
(
"
--ntp-server cannot be used together with --no-ntp
"
)
msg
=
"
--ntp-server cannot be used together with --no-ntp
"
)
if
options
.
ntp_pool
and
options
.
no_ntp
:
module
.
fail_json
(
"
--ntp-pool cannot be used together with --no-ntp
"
)
msg
=
"
--ntp-pool cannot be used together with --no-ntp
"
)
#if options.no_nisdomain and options.nisdomain:
# module.fail_json(
...
...
This diff is collapsed.
Click to expand it.
roles/ipaserver/library/ipaserver_test.py
+
1
−
1
View file @
1ba0391f
...
...
@@ -261,7 +261,7 @@ def main():
try
:
check_zone_overlap
(
options
.
domain_name
,
False
)
except
ValueError
as
e
:
ansible_module
.
fail_json
(
str
(
e
))
ansible_module
.
fail_json
(
msg
=
str
(
e
))
# dm_password
with
redirect_stdout
(
ansible_log
):
...
...
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