2017-02-13 13:32:00 +00:00
|
|
|
{pkgs, config, ...}:
|
|
|
|
with import <stockholm/lib>;
|
|
|
|
let
|
|
|
|
echoToIrc = msg:
|
|
|
|
pkgs.writeDash "echo_irc" ''
|
|
|
|
set -euf
|
|
|
|
export LOGNAME=prism-alarm
|
|
|
|
${pkgs.irc-announce}/bin/irc-announce \
|
2017-02-15 23:06:15 +00:00
|
|
|
ni.r 6667 prism-alarm \#noise "${msg}" >/dev/null
|
2017-02-13 13:32:00 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
in {
|
|
|
|
krebs.monit = {
|
|
|
|
enable = true;
|
|
|
|
http.enable = true;
|
2017-02-13 19:56:34 +00:00
|
|
|
alarms = {
|
|
|
|
nirwanabluete = {
|
|
|
|
test = "${pkgs.curl}/bin/curl -sf 'https://nirwanabluete.de/'";
|
|
|
|
alarm = echoToIrc "test nirwanabluete failed";
|
|
|
|
};
|
|
|
|
ubik = {
|
|
|
|
test = "${pkgs.curl}/bin/curl -sf 'https://ubikmedia.de'";
|
|
|
|
alarm = echoToIrc "test ubik failed";
|
|
|
|
};
|
|
|
|
hfos = {
|
|
|
|
test = "${pkgs.curl}/bin/curl -sf --insecure 'https://hfos.hackerfleet.de'";
|
|
|
|
alarm = echoToIrc "test hfos failed";
|
|
|
|
};
|
|
|
|
cac-panel = {
|
|
|
|
test = "${pkgs.curl}/bin/curl -sf 'https://panel.cloudatcost.com/login.php'";
|
|
|
|
alarm = echoToIrc "test cac-panel failed";
|
|
|
|
};
|
|
|
|
radio = {
|
|
|
|
test = pkgs.writeBash "check_stream" ''
|
|
|
|
${pkgs.curl}/bin/curl -sif http://lassul.us:8000/radio.ogg \
|
|
|
|
| ${pkgs.gawk}/bin/awk '/^\r$/{exit}{print $0}' \
|
|
|
|
| ${pkgs.gnugrep}/bin/grep -q "200 OK" || exit "''${PIPESTATUS[0]}"
|
|
|
|
'';
|
|
|
|
alarm = echoToIrc "test radio failed";
|
|
|
|
};
|
2017-02-13 13:32:00 +00:00
|
|
|
};
|
|
|
|
};
|
2017-02-13 19:58:29 +00:00
|
|
|
|
|
|
|
krebs.iptables.tables.filter.INPUT.rules = [
|
|
|
|
{ predicate = "-p tcp -i retiolum --dport 9093"; target = "ACCEPT"; }
|
|
|
|
];
|
2017-02-13 13:32:00 +00:00
|
|
|
}
|
|
|
|
|