stockholm/makefu/2configs/stats/arafetch.nix

67 lines
1.7 KiB
Nix
Raw Normal View History

2018-03-28 09:07:35 +00:00
{ pkgs, lib, ...}:
with import <stockholm/lib>;
let
pkg = with pkgs.python3Packages;buildPythonPackage rec {
rev = "56d41de8219adc";
name = "arafetch-${rev}";
2018-03-28 09:07:35 +00:00
propagatedBuildInputs = [
requests
docopt
influxdb
beautifulsoup4
paho-mqtt
2018-03-28 09:07:35 +00:00
];
src = pkgs.fetchgit {
url = "http://cgit.euer.krebsco.de/arafetch";
inherit rev;
sha256 = "0hnwbmj0plynhv3h2idhrzf2zcqx3qnw6lq8zzyn9am74pmvza39";
2018-03-28 09:07:35 +00:00
};
};
home = "/var/lib/arafetch";
in {
users.users.arafetch = {
uid = genid "arafetch";
inherit home;
createHome = true;
2021-06-05 17:21:36 +00:00
isSystemUser = true;
2021-12-04 19:46:47 +00:00
group = "arafetch";
2018-03-28 09:07:35 +00:00
};
2021-12-04 19:46:47 +00:00
users.groups.arafetch = {};
2018-03-28 09:07:35 +00:00
systemd.services.ara2mqtt = {
startAt = "05:00:00";
after = [ "network-online.target" ];
path = [ pkg ];
serviceConfig = {
User = "arafetch";
# Restart = "always";
WorkingDirectory = home;
PrivateTmp = true;
ExecStart = pkgs.writeDash "daily-mqtt" ''
ara2mqtt db/thales-deutschland.json --cantine thales-deutschland --host localhost
'';
};
};
2018-03-28 09:07:35 +00:00
systemd.services.arafetch = {
startAt = "Mon,Wed,Fri 09:15:00";
2018-03-28 09:07:35 +00:00
wantedBy = [ "multi-user.target" ];
2018-11-05 12:55:24 +00:00
after = [ "network-online.target" ];
environment.OUTDIR = home;
2018-03-28 09:07:35 +00:00
path = [ pkg pkgs.git pkgs.wget ];
serviceConfig = {
User = "arafetch";
2019-05-08 11:57:29 +00:00
# Restart = "always";
WorkingDirectory = home;
PrivateTmp = true;
ExecStart = pkgs.writeDash "start-weekrun" ''
weekrun || echo "weekrun failed!"
find $OUTDIR/db -name \*.json | while read path;do
file=''${path##*/}
cantine=''${file%%.json}
ara2influx $path --cantine $cantine --host wbob.r
done
'';
};
2018-03-28 09:07:35 +00:00
};
}