blob: 84d2c7340cc64cd4f86ffa9af87504c8055b9c03 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#!/bin/sh
2
3if [ -s /var/log/ppp.log ]; then
4 exec tail "$@" /var/log/ppp.log
5else
6 exec tail "$@" /var/log/syslog | grep ' \(pppd\|chat\)\['
7fi