fixed small issue in freeipa-dns (override check not working)
updated README - added clarification on password migration being limited adding first version of freeipa-letsencrypt.sh (fixes #1)
This commit is contained in:
@@ -378,7 +378,7 @@ def reverseptr(api, args):
|
||||
if currrev == recordname:
|
||||
logger.debug('no update for %s (%s) in %s',
|
||||
reventry, recordname, revzone)
|
||||
elif currrev and not args.overwrite:
|
||||
elif currrev and not args.override:
|
||||
logger.warn('not updating %s (%s) in %s pointing to'
|
||||
' %s', reventry, recordname, revzone, currrev)
|
||||
else:
|
||||
@@ -588,7 +588,7 @@ if __name__ == '__main__':
|
||||
args.func(api, args)
|
||||
exit(0)
|
||||
except DNSException as e:
|
||||
logger.critical("Domain %s cannot be downloaded,%s", domain, e)
|
||||
logger.critical("Domain cannot be downloaded: %s", e)
|
||||
except AuthenticationError:
|
||||
logger.critical("Unable to authenticate to FreeIPA, make sure you have a valid Kerberos ticket!")
|
||||
except PublicError as e:
|
||||
|
||||
Reference in New Issue
Block a user