add NF and F to prefix each host so you can grep for which is which

This commit is contained in:
Seth Vidal 2013-06-18 19:06:23 +00:00
parent e17c382de4
commit 12f2818954

View file

@ -35,12 +35,12 @@ for host in sorted(inv.get_hosts()):
print 'freeze:'
for host in sorted(frozen):
print ' ' + host
print 'F: ' + host
print 'do not freeze:'
for host in sorted(unfrozen):
print ' ' + host
print 'NF: ' + host