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,
|
2025-02-10 21:55:08 +00:00
|
|
|
callPackage,
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
interface,
|
2024-07-16 19:47:53 +00:00
|
|
|
ppp-options,
|
|
|
|
lcpEcho,
|
|
|
|
username,
|
|
|
|
password,
|
2025-02-10 21:55:08 +00:00
|
|
|
debug,
|
2024-07-16 19:47:53 +00:00
|
|
|
}:
|
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
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
timeoutOpt =
|
|
|
|
if lcpEcho.interval != null then "-T ${builtins.toString (4 * lcpEcho.interval)}" else "";
|
|
|
|
in
|
|
|
|
common {
|
|
|
|
inherit
|
|
|
|
name
|
|
|
|
debug
|
|
|
|
username
|
|
|
|
password
|
|
|
|
lcpEcho
|
|
|
|
ppp-options
|
|
|
|
;
|
2024-09-03 23:12:26 +00:00
|
|
|
command = ''
|
|
|
|
exec ${ppp}/bin/pppd pty "${pppoe}/bin/pppoe ${timeoutOpt} -I $(output ${interface} ifname)" file /run/${name}/ppp-options
|
|
|
|
'';
|
|
|
|
dependencies = [ interface ];
|
2022-09-25 10:54:31 +00:00
|
|
|
}
|