diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/freezelist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/freezelist b/scripts/freezelist index c5837a34b..46adc4363 100755 --- a/scripts/freezelist +++ b/scripts/freezelist @@ -34,12 +34,12 @@ for host in sorted(inv.get_hosts()): unfrozen.append(host.name) print 'freeze:' -for host in frozen: +for host in sorted(frozen): print ' ' + host print 'do not freeze:' -for host in unfrozen: +for host in sorted(unfrozen): print ' ' + host |
