2022-09-25 10:54:31 +00:00
|
|
|
{
|
2024-09-03 21:57:45 +00:00
|
|
|
lib,
|
|
|
|
liminix,
|
|
|
|
output-template,
|
|
|
|
ppp,
|
|
|
|
pppoe,
|
|
|
|
serviceFns,
|
|
|
|
svc,
|
|
|
|
writeAshScript,
|
2024-09-03 23:12:26 +00:00
|
|
|
callPackage
|
2022-09-25 10:54:31 +00:00
|
|
|
} :
|
2024-07-16 19:47:53 +00:00
|
|
|
{ interface,
|
|
|
|
ppp-options,
|
|
|
|
lcpEcho,
|
|
|
|
username,
|
|
|
|
password,
|
|
|
|
debug
|
|
|
|
}:
|
2022-09-25 10:54:31 +00:00
|
|
|
let
|
2023-08-27 22:20:58 +00:00
|
|
|
name = "${interface.name}.pppoe";
|
2024-09-03 23:12:26 +00:00
|
|
|
common = callPackage ./common.nix { inherit svc; };
|
2024-08-20 23:17:22 +00:00
|
|
|
|
2024-07-16 19:47:53 +00:00
|
|
|
timeoutOpt = if lcpEcho.interval != null then "-T ${builtins.toString (4 * lcpEcho.interval)}" else "";
|
2024-09-03 23:12:26 +00:00
|
|
|
in common {
|
|
|
|
inherit name debug username password lcpEcho ppp-options;
|
|
|
|
command = ''
|
2024-12-03 19:30:52 +00:00
|
|
|
${ppp}/bin/pppd pty "${pppoe}/bin/pppoe ${timeoutOpt} -I $(output ${interface} ifname)" file /run/${name}/ppp-options
|
2024-09-03 23:12:26 +00:00
|
|
|
'';
|
|
|
|
dependencies = [ interface ];
|
2022-09-25 10:54:31 +00:00
|
|
|
}
|