summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2016-02-23 17:40:54 +0100
committerThomas Haller <thaller@redhat.com>2016-02-23 23:15:37 +0100
commit1b00009169254d0a8fc9c2da1ccd99a716d2715f (patch)
treeb622e9dfe46413ee749853639832ab5d854cc652 /examples
parent26718e989ecd31d179e5ae2406a52acb49a73dd5 (diff)
downloadNetworkManager-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-xexamples/python/dbus/list-devices.py1
-rwxr-xr-xexamples/ruby/list-devices.rb1
-rwxr-xr-xexamples/shell/list-devices.sh1
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
}