From 4a496a72c8fc04fe2e8781232561da768e26cc9b Mon Sep 17 00:00:00 2001 From: Seth Vidal Date: Tue, 14 May 2013 14:50:36 +0000 Subject: [PATCH] add python shebang - add a comment a the top --- scripts/freezelist | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/freezelist b/scripts/freezelist index 9319edd11b..4a883cb866 100755 --- a/scripts/freezelist +++ b/scripts/freezelist @@ -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)