mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 00:02:17 +01:00
8 lines
146 B
Bash
8 lines
146 B
Bash
#!/bin/sh
|
|
|
|
if [ -s /var/log/ppp.log ]; then
|
|
exec tail "$@" /var/log/ppp.log
|
|
else
|
|
exec tail "$@" /var/log/syslog | grep ' \(pppd\|chat\)\['
|
|
fi
|