diff options
author | Thomas Haller <thaller@redhat.com> | 2016-02-23 17:40:54 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2016-02-23 23:15:37 +0100 |
commit | 1b00009169254d0a8fc9c2da1ccd99a716d2715f (patch) | |
tree | b622e9dfe46413ee749853639832ab5d854cc652 /examples | |
parent | 26718e989ecd31d179e5ae2406a52acb49a73dd5 (diff) | |
download | NetworkManager-1b00009169254d0a8fc9c2da1ccd99a716d2715f.tar.gz |
device: add new NMDeviceType NM_DEVICE_TYPE_VETH
Based-on-patch-by: Jiří Klimeš <jklimes@redhat.com>
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/python/dbus/list-devices.py | 1 | ||||
-rwxr-xr-x | examples/ruby/list-devices.rb | 1 | ||||
-rwxr-xr-x | examples/shell/list-devices.sh | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/examples/python/dbus/list-devices.py b/examples/python/dbus/list-devices.py index c9c753ec8b..8dd41f6164 100755 --- a/examples/python/dbus/list-devices.py +++ b/examples/python/dbus/list-devices.py @@ -40,6 +40,7 @@ devtypes = { 1: "Ethernet", 17: "IPTunnel" 18: "MACVLAN" 19: "VXLAN" + 20: "Veth" } states = { 0: "Unknown", diff --git a/examples/ruby/list-devices.rb b/examples/ruby/list-devices.rb index 9949a40977..bf37425839 100755 --- a/examples/ruby/list-devices.rb +++ b/examples/ruby/list-devices.rb @@ -43,6 +43,7 @@ devtypes = { 1 => "Ethernet", 17 => "IPTunnel", 18 => "MACVLAN", 19 => "VXLAN", + 20 => "Veth", } states = { 0 => "Unknown", diff --git a/examples/shell/list-devices.sh b/examples/shell/list-devices.sh index 817c8b7cc4..c5c4114012 100755 --- a/examples/shell/list-devices.sh +++ b/examples/shell/list-devices.sh @@ -52,6 +52,7 @@ devtype_to_name() 17) echo "IPTunnel" ;; 18) echo "MACVLAN" ;; 19) echo "VXLAN" ;; + 20) echo "Veth" ;; *) echo "Unknown" ;; esac } |