blob: 148126cf3e705471b98be631bad28e7496228bfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
{ lib, pkgs }:
let
checkNetwork =
hosts:
let
pkg = pkgs.writeShellApplication {
name = "check-network";
runtimeInputs = [ pkgs.unixtools.ping ];
text = ''
(${lib.concatMapStringsSep " && " (host: "ping -c 1 ${host}") hosts}) || kill -s SIGUSR1 $$
'';
};
in
"${pkg}/bin/check-network";
in
{
home.serviceWithTimer =
name:
{
Unit,
Service,
# Timer,
Install,
...
}@config:
{
services.${name} = { inherit (config) Unit Service; };
timers.${name} = {
inherit (config) Unit Install;
Timer = config.Timer // {
Unit = "${name}.service";
};
};
};
home.checkNetwork =
{
hosts,
restart ? true,
}:
{
# Check network connectivity
Unit = {
StartLimitIntervalSec = 300;
StartLimitBurst = 5;
};
Service = lib.mkMerge [
{
ExecStartPre = checkNetwork hosts;
}
(lib.mkIf restart {
Restart = "on-abort";
RestartSec = 30;
RestartMode = "direct"; # dependent units will not fail
})
];
};
checkNetwork =
{
hosts,
restart ? true,
}:
{
# Check network connectivity
preStart = checkNetwork hosts;
unitConfig = {
StartLimitIntervalSec = 300;
StartLimitBurst = 5;
};
serviceConfig = lib.mkIf restart {
Restart = "on-abort";
RestartSec = 30;
RestartMode = "direct"; # dependent units will not fail
};
};
}
|