Check spamhaus pbl when launching new servers

Add a reminder to launch node script to check the spamhaus pbl when
launching a new server.

Change-Id: I1daaccfb0b90fb46b29c035f8f4fd5788dffe627
This commit is contained in:
Clark Boylan 2019-06-11 13:12:44 -07:00
parent e74d0f786b
commit 4e9fab65b7
1 changed files with 10 additions and 0 deletions

View File

@ -375,6 +375,16 @@ def main():
options.environment, options.volume_size,
options.timeout)
dns.print_dns(cloud, server)
print("If this is a server that is expected to send email (ask, review,")
print("lists, etc) double check that the server's IPs are not listed on")
print("the spamhaus pbl.\n")
print("URLs to check:")
print("https://www.spamhaus.org/query/ip/%s" % server.public_v4)
print("https://www.spamhaus.org/query/ip/%s" % server.public_v6)
print()
print("When requesting an exception you can use the")
print("infra-root@openstack.org email address to verify the responsible")
print("party.")
if __name__ == '__main__':
main()