diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-04-06 08:18:55 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-04-06 08:18:55 -0700 |
commit | f17d33fcd1c909eb05943fae41a1628519328c1c (patch) | |
tree | efedca167f358b75d8a2caa2e2503d746ecccdd2 /lib | |
parent | c8b6797c0f7f3e59e110a11c1c651da8fa201a7b (diff) | |
download | vyatta-cfg-f17d33fcd1c909eb05943fae41a1628519328c1c.tar.gz vyatta-cfg-f17d33fcd1c909eb05943fae41a1628519328c1c.zip |
Add support for input interface in Interface module
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/Vyatta/Interface.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Vyatta/Interface.pm b/lib/Vyatta/Interface.pm index 432fe33..183c6c7 100755 --- a/lib/Vyatta/Interface.pm +++ b/lib/Vyatta/Interface.pm @@ -76,6 +76,7 @@ my %net_prefix = ( '^peth[\d]+$' => { path => 'pseudo-ethernet', vif => 'vif', }, '^wlan[\d]+$' => { path => 'wireless', vif => 'vif' }, + '^in[\d]+$' => { path => 'input' }, ); # get list of interface types (only used in usage function) |