mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
Alertmanager IRC relay is a bot that relays Prometheus alerts to IRC channels. Alerts are received from Prometheus using Webhooks to then be relayed to an IRC channel. See also: <https://github.com/google/alertmanager-irc-relay/> Signed-off-by: Ferass El Hafidi <funderscore@postmarketos.org>
7 lines
189 B
Bash
Executable File
7 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
|
|
addgroup -S alertmanager-irc-relay 2>/dev/null
|
|
adduser -S -D -H -s /sbin/nologin -G alertmanager-irc-relay -g "Alertmanager IRC relay" alertmanager-irc-relay 2>/dev/null
|
|
|
|
exit 0
|