mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
library/ipaapi.py: Fixed create_db version check
create_db is requiring an additional argument for IPA version 4.4.4 still.
This commit is contained in:
@@ -172,7 +172,7 @@ def main():
|
||||
# Add CA certs to a temporary NSS database
|
||||
argspec = inspect.getargspec(tmp_db.create_db)
|
||||
try:
|
||||
if NUM_VERSION > 40400:
|
||||
if NUM_VERSION > 40404:
|
||||
tmp_db.create_db()
|
||||
|
||||
for i, cert in enumerate(ca_certs):
|
||||
|
||||
Reference in New Issue
Block a user