diff options
| author | John Southworth <john.southworth@vyatta.com> | 2011-11-22 08:40:24 -0800 |
|---|---|---|
| committer | John Southworth <john.southworth@vyatta.com> | 2011-11-22 08:40:24 -0800 |
| commit | 00a1956d0aaf6044acc669f409cf6e4ceb48da0e (patch) | |
| tree | bc43a61730f4afd97b03c998fdd92608bb0fb71f /lib | |
| parent | 600338aaa2ec27429e29362ad65ab8870f67a58c (diff) | |
| download | vyatta-cfg-00a1956d0aaf6044acc669f409cf6e4ceb48da0e.tar.gz vyatta-cfg-00a1956d0aaf6044acc669f409cf6e4ceb48da0e.zip | |
adjust pppoe interface detection for non-userland
Diffstat (limited to 'lib')
| -rwxr-xr-x | lib/Vyatta/Interface.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Interface.pm b/lib/Vyatta/Interface.pm index e22ae60..d1f129b 100755 --- a/lib/Vyatta/Interface.pm +++ b/lib/Vyatta/Interface.pm @@ -181,7 +181,7 @@ sub _ppp_intf { chomp; # looking for line like: # pty "/usr/sbin/pppoe -m 1412 -I eth1" - next unless /^pty\s.*-I\s*(\w+)"/; + next unless /pty\s.*-I\s*(\w+)"/; $intf = $1; last; } |
