Skip to content
Snippets Groups Projects
Commit 72a0efc1 authored by Bob Mottram's avatar Bob Mottram
Browse files

Improve broadcast configuration for xmpp

parent 2623c28f
No related branches found
No related tags found
No related merge requests found
......@@ -843,8 +843,11 @@ function xmpp_onion_addresses {
function xmpp_broadcast {
filename="$1"
echo "Component \"notification@$HOSTNAME\" \"broadcast\"" >> "$filename"
echo " broadcast_senders = { \"notification@$HOSTNAME\" }" >> "$filename"
if ! grep -q "broadcast_senders" "$filename"; then
echo "broadcast_senders = { \"notification@$HOSTNAME\" }" >> "$filename"
else
sed -i "s|broadcast_senders.*|broadcast_senders = { \"notification@$HOSTNAME\" }|g" "$filename"
fi
}
function xmpp_create_config {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment