puppet/modules/rhizo_base/templates/bts_defs.js.erb

8 lines
352 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"]%>, <%=(bts["sdcch"]==nil) ? '8' : bts["sdcch"]%>, <%=(bts["tch"]==nil) ? '10' : bts["tch"]%>],
<% end -%>
<% end -%>
]