Skip to content
This repository was archived by the owner on May 12, 2025. It is now read-only.

Commit 82daa01

Browse files
Install package to Kerberos authentication in Percona Server
1 parent 1ea0241 commit 82daa01

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

tasks/install.amazon.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,16 @@
139139
- mongodb_tools | bool
140140
tags: [mongodb-install]
141141

142+
- name: "Install libkrb5 for Kerberos authentication in Percona Server"
143+
yum:
144+
name: krb5-devel
145+
state: present
146+
lock_timeout: "{{ yum_lock_timeout }}"
147+
when:
148+
- mongodb_backup|bool
149+
- mongodb_backup_engine == 'pbm'
150+
tags: [ mongodb-install, pbm-install ]
151+
142152
- name: "Install Percona Backup"
143153
yum:
144154
name: percona-backup-mongodb

tasks/install.debian.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,16 @@
204204
- mongodb_tools | bool
205205
tags: [mongodb-install]
206206

207+
- name: "Install libkrb5 for Kerberos authentication in Percona Server"
208+
apt:
209+
name: libkrb5-dev
210+
state: present
211+
update_cache: true
212+
when:
213+
- mongodb_backup|bool
214+
- mongodb_backup_engine == 'pbm'
215+
tags: [ mongodb-install, pbm-install ]
216+
207217
- name: "Install Percona Backup"
208218
apt:
209219
name: percona-backup-mongodb

tasks/install.redhat.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,16 @@
157157
- mongodb_tools | bool
158158
tags: [mongodb-install]
159159

160+
- name: "Install libkrb5 for Kerberos authentication in Percona Server"
161+
yum:
162+
name: krb5-devel
163+
state: present
164+
lock_timeout: "{{ yum_lock_timeout }}"
165+
when:
166+
- mongodb_backup|bool
167+
- mongodb_backup_engine == 'pbm'
168+
tags: [ mongodb-install, pbm-install ]
169+
160170
- name: "Install Percona Backup"
161171
yum:
162172
name: percona-backup-mongodb

0 commit comments

Comments
 (0)