forked from dan/liminix
restart pppoe/l2tp in secrets changes
This commit is contained in:
parent
defbfce1fb
commit
e745991b9d
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
liminix
|
liminix
|
||||||
, lib
|
, lib
|
||||||
|
, svc
|
||||||
, output-template
|
, output-template
|
||||||
, writeAshScript
|
, writeAshScript
|
||||||
, writeText
|
, writeText
|
||||||
@ -78,16 +79,19 @@ let
|
|||||||
max redials = 2 # this gives 1 actual retry, as xl2tpd can't count
|
max redials = 2 # this gives 1 actual retry, as xl2tpd can't count
|
||||||
'';
|
'';
|
||||||
control = "/run/${name}/control";
|
control = "/run/${name}/control";
|
||||||
in
|
service = longrun {
|
||||||
longrun {
|
inherit name;
|
||||||
inherit name;
|
run = ''
|
||||||
run = ''
|
mkdir -p /run/${name}
|
||||||
mkdir -p /run/${name}
|
chmod 0700 /run/${name}
|
||||||
chmod 0700 /run/${name}
|
touch ${control}
|
||||||
touch ${control}
|
in_outputs ${name}
|
||||||
in_outputs ${name}
|
echo ${escapeShellArgs ppp-options'} | ${output-template}/bin/output-template '{{' '}}' > /run/${name}/ppp-options
|
||||||
echo ${escapeShellArgs ppp-options'} | ${output-template}/bin/output-template '{{' '}}' > /run/${name}/ppp-options
|
exec ${xl2tpd}/bin/xl2tpd -D -p /run/${name}/${name}.pid -c ${conf} -C ${control}
|
||||||
exec ${xl2tpd}/bin/xl2tpd -D -p /run/${name}/${name}.pid -c ${conf} -C ${control}
|
'';
|
||||||
'';
|
notification-fd = 10;
|
||||||
notification-fd = 10;
|
};
|
||||||
|
in svc.secrets.subscriber.build {
|
||||||
|
watch = [ username password ];
|
||||||
|
inherit service;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
liminix
|
liminix
|
||||||
|
, svc
|
||||||
, lib
|
, lib
|
||||||
, output-template
|
, output-template
|
||||||
, ppp
|
, ppp
|
||||||
@ -66,19 +67,23 @@ let
|
|||||||
"logfd" "2"
|
"logfd" "2"
|
||||||
];
|
];
|
||||||
timeoutOpt = if lcpEcho.interval != null then "-T ${builtins.toString (4 * lcpEcho.interval)}" else "";
|
timeoutOpt = if lcpEcho.interval != null then "-T ${builtins.toString (4 * lcpEcho.interval)}" else "";
|
||||||
in
|
service = longrun {
|
||||||
longrun {
|
inherit name;
|
||||||
inherit name;
|
run = ''
|
||||||
run = ''
|
mkdir -p /run/${name}
|
||||||
mkdir -p /run/${name}
|
chmod 0700 /run/${name}
|
||||||
chmod 0700 /run/${name}
|
in_outputs ${name}
|
||||||
in_outputs ${name}
|
echo ${escapeShellArgs ppp-options'} | ${output-template}/bin/output-template '{{' '}}' > /run/${name}/ppp-options
|
||||||
echo ${escapeShellArgs ppp-options'} | ${output-template}/bin/output-template '{{' '}}' > /run/${name}/ppp-options
|
exec ${ppp}/bin/pppd pty "${pppoe}/bin/pppoe ${timeoutOpt} -I $(output ${interface} ifname)" file /run/${name}/ppp-options
|
||||||
exec ${ppp}/bin/pppd pty "${pppoe}/bin/pppoe ${timeoutOpt} -I $(output ${interface} ifname)" file /run/${name}/ppp-options
|
'';
|
||||||
'';
|
notification-fd = 10;
|
||||||
notification-fd = 10;
|
timeout-up = if lcpEcho.failure != null
|
||||||
timeout-up = if lcpEcho.failure != null
|
then (10 + lcpEcho.failure * lcpEcho.interval) * 1000
|
||||||
then (10 + lcpEcho.failure * lcpEcho.interval) * 1000
|
else 60 * 1000;
|
||||||
else 60 * 1000;
|
dependencies = [ interface ];
|
||||||
dependencies = [ interface ];
|
};
|
||||||
|
in svc.secrets.subscriber.build {
|
||||||
|
watch = [ username password ];
|
||||||
|
inherit service;
|
||||||
|
action = "restart-all";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user