puppet/modules/rhizo_base/templates/bts_defs.js.erb
2020-05-22 04:20:28 +02:00

8 lines
261 B
Text

const bts_defs = [
// Index, TRX, Name, ARFCN, BSIC
<% @bts.each_with_index do |bts, index| -%>
<% bts["trx"].each_with_index do |trx, trx_i| -%>
[<%= index %>, <%= trx_i %>, "<%= bts["name"] %>", <%= trx["chan"]%>, <%= bts["bsic"]%>],
<% end -%>
<% end -%>
]