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
3c666ccd
Unverified
Commit
3c666ccd
authored
4 years ago
by
Varun Mylaraiah
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #511 from t-woerner/ipaclient_otp_rmkeytab_error#7
ipaclient: Do not fail on rmkeytab error #7
parents
5bed0d62
976cd1ba
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
roles/ipaclient/tasks/install.yml
+5
-1
5 additions, 1 deletion
roles/ipaclient/tasks/install.yml
with
5 additions
and
1 deletion
roles/ipaclient/tasks/install.yml
+
5
−
1
View file @
3c666ccd
...
@@ -181,8 +181,12 @@
...
@@ -181,8 +181,12 @@
# Do not fail on error codes 3 and 5:
# Do not fail on error codes 3 and 5:
# 3 - Unable to open keytab
# 3 - Unable to open keytab
# 5 - Principal name or realm not found in keytab
# 5 - Principal name or realm not found in keytab
# 7 - Failed to set cursor, typically when errcode
# would be issued in past
failed_when
:
result_ipa_rmkeytab.rc != 0 and
failed_when
:
result_ipa_rmkeytab.rc != 0 and
result_ipa_rmkeytab.rc != 3 and result_ipa_rmkeytab.rc !=
5
result_ipa_rmkeytab.rc != 3 and
result_ipa_rmkeytab.rc != 5 and
result_ipa_rmkeytab.rc !=
7
when
:
(ipaclient_use_otp | bool or ipaclient_force_join | bool) and not ipaclient_on_master | bool
when
:
(ipaclient_use_otp | bool or ipaclient_force_join | bool) and not ipaclient_on_master | bool
-
name
:
Install - Backup and set hostname
-
name
:
Install - Backup and set hostname
...
...
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