add python shebang - add a comment a the top

This commit is contained in:
Seth Vidal 2013-05-14 14:50:36 +00:00
parent cd911b2559
commit 4a496a72c8

View file

@ -1,3 +1,8 @@
#!/usr/bin/python
# skvidal
# dump out the hosts marked with 'freezes: true' in their vars
import ansible.inventory
import sys
@ -10,7 +15,7 @@ for host in sorted(inv.get_hosts()):
if freezes:
frozen.append(host.name)
elif freezes == 'None':
print 'Error: missing freeezes: %s' % host.name
print 'Error: missing freezes: %s' % host.name
else:
unfrozen.append(host.name)