shut up man, i'm getting SO MANY cron emails about this

This commit is contained in:
brent s. 2020-05-14 12:52:25 -04:00
parent b2848970c3
commit 289c2711b8
Signed by: bts
GPG Key ID: 8C004C2F93481F6B
2 changed files with 6 additions and 2 deletions

4
ldap/loglevel.py Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env python3

# https://www.openldap.org/doc/admin24/slapdconfig.html#loglevel%20%3Clevel%3E
# https://www.zytrax.com/books/ldap/ch6/#loglevel

View File

@ -194,9 +194,9 @@ class Updater(object):
rrset = records.get(t)
if not ip:
e = 'IPv{0} disabled; skipping'.format(v)
warnings.warn(e)
if is_tty:
logger.warning(e)
warnings.warn(e)
logger.warning(e)
continue
if rrset and ip in rrset:
e = 'Skipping adding {0} for {1}; already exists in DNS'.format(ip, fqdn)