make ppp log to stderr not syslog

This commit is contained in:
Daniel Barlow 2022-09-27 22:57:06 +01:00
parent 0632b5102e
commit dfdaa27f39
3 changed files with 7 additions and 24 deletions

View file

@ -25,11 +25,6 @@ in rec {
"PPP_SYNC_TTY" = "y";
};
services.syslogd = longrun {
name = "syslogd";
run = "${pkgs.busybox}/bin/syslogd -n -O /run/syslog";
};
services.pppoe =
let iface = interface { type = "hardware"; device = "eth0"; };
in pppoe iface {
@ -64,7 +59,6 @@ in rec {
loopback
defaultroute4
packet_forwarding
syslogd
];
};