13 lines
389 B
Plaintext
13 lines
389 B
Plaintext
[% USE CSV -%]
|
|
[% CSV.dump(['Device','Contact','Location','System Name','Model','OS Version','Management IP','Serial']) %]
|
|
|
|
[% FOREACH row IN results %]
|
|
[% mylist = [] %]
|
|
[% device = row.dns || row.ip %]
|
|
[% FOREACH col IN [ device row.contact row.location row.name row.model row.os_ver row.ip row.serial] %]
|
|
[% mylist.push(col) %]
|
|
[% END %]
|
|
[% CSV.dump(mylist) %]
|
|
|
|
[% END %]
|