diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2019-07-10 15:04:29 +0200 |
---|---|---|
committer | Lubomir Rintel <lkundrak@v3.sk> | 2019-07-10 15:04:29 +0200 |
commit | 68ad9aabf80d506fa9bde3161c6d6faf24db7eff (patch) | |
tree | e8e3d04e08b84cd119832c98122666b50732ce05 /clients/common | |
parent | dcbf274e84176cd2c4663e45447de4f5d8ac9383 (diff) | |
download | NetworkManager-68ad9aabf80d506fa9bde3161c6d6faf24db7eff.tar.gz |
clients/metta-setting-desc: allow "system" and "dpdk" ovs interface types
These are valid, but were missing.
Diffstat (limited to 'clients/common')
-rw-r--r-- | clients/common/nm-meta-setting-desc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/common/nm-meta-setting-desc.c b/clients/common/nm-meta-setting-desc.c index 2ff994d068..cd3dc8d26e 100644 --- a/clients/common/nm-meta-setting-desc.c +++ b/clients/common/nm-meta-setting-desc.c @@ -6141,7 +6141,7 @@ static const NMMetaPropertyInfo *const property_infos_OVS_INTERFACE[] = { PROPERTY_INFO_WITH_DESC (NM_SETTING_OVS_INTERFACE_TYPE, .property_type = &_pt_gobject_string, .property_typ_data = DEFINE_PROPERTY_TYP_DATA ( - .values_static = NM_MAKE_STRV ("internal", "patch"), + .values_static = NM_MAKE_STRV ("internal", "system", "patch", "dpdk"), ), ), NULL |