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
1d8deb8e
Commit
1d8deb8e
authored
2 years ago
by
Rafael Guterres Jeffman
Browse files
Options
Downloads
Patches
Plain Diff
Fix issues raised by Pylint version 2.14.4.
parent
b3856a1e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
plugins/modules/ipaautomountmap.py
+1
-1
1 addition, 1 deletion
plugins/modules/ipaautomountmap.py
plugins/modules/ipadnszone.py
+2
-1
2 additions, 1 deletion
plugins/modules/ipadnszone.py
with
3 additions
and
2 deletions
plugins/modules/ipaautomountmap.py
+
1
−
1
View file @
1d8deb8e
...
@@ -126,7 +126,7 @@ class AutomountMap(IPAAnsibleModule):
...
@@ -126,7 +126,7 @@ class AutomountMap(IPAAnsibleModule):
self
.
params_fail_used_invalid
(
invalid
,
state
)
self
.
params_fail_used_invalid
(
invalid
,
state
)
def
get_args
(
self
,
mapname
,
desc
):
# pylint: disable=no-self-use
def
get_args
(
self
,
mapname
,
desc
):
# automountmapname is required for all automountmap operations.
# automountmapname is required for all automountmap operations.
if
not
mapname
:
if
not
mapname
:
self
.
fail_json
(
msg
=
"
automountmapname cannot be None or empty.
"
)
self
.
fail_json
(
msg
=
"
automountmapname cannot be None or empty.
"
)
...
...
This diff is collapsed.
Click to expand it.
plugins/modules/ipadnszone.py
+
2
−
1
View file @
1d8deb8e
...
@@ -280,7 +280,8 @@ class DNSZoneModule(IPAAnsibleModule):
...
@@ -280,7 +280,8 @@ class DNSZoneModule(IPAAnsibleModule):
if
any
(
invalid_ips
):
if
any
(
invalid_ips
):
self
.
fail_json
(
msg
=
error_msg
%
invalid_ips
)
self
.
fail_json
(
msg
=
error_msg
%
invalid_ips
)
def
is_valid_nsec3param_rec
(
self
,
nsec3param_rec
):
# pylint: disable=R0201
@staticmethod
def
is_valid_nsec3param_rec
(
nsec3param_rec
):
try
:
try
:
part1
,
part2
,
part3
,
part4
=
nsec3param_rec
.
split
(
"
"
)
part1
,
part2
,
part3
,
part4
=
nsec3param_rec
.
split
(
"
"
)
except
ValueError
:
except
ValueError
:
...
...
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