aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/templates/puppet/xmpp.yaml.erb
blob: 572f4727ffaaf7d2def8834d32ddd3f6eee69bb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
:xmpp_password: "<%= @xmpp["password"] %>"
:xmpp_jid: "<%= @xmpp["jid"] %>/<%= @real_hostname %>"
:xmpp_target: "<%= @xmpp["target"] %>"
<% if @xmpp["statuses"].is_a?(String) %>
:xmpp_statuses: "<%= @xmpp["statuses"] %>"
<% else %>
:xmpp_statuses:
<% @xmpp["statuses"].each do |status| %>
  - <%= status %>
<% end %>
<% end %>