From 46514ec7d5fcc6d7fb803c4d495c5cb3f5e2a3b0 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Mon, 29 Aug 2022 09:43:32 +0200 Subject: [PATCH] interfaces: finally move plugin defintions to plugins --- src/etc/inc/plugins.inc.d/core.inc | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/etc/inc/plugins.inc.d/core.inc b/src/etc/inc/plugins.inc.d/core.inc index be7624ce0..374723312 100644 --- a/src/etc/inc/plugins.inc.d/core.inc +++ b/src/etc/inc/plugins.inc.d/core.inc @@ -285,14 +285,8 @@ function core_devices() 'type' => 'wlan', ]; - # XXX is a plugin collection... - $devices[] = array('pattern' => '^ocvpn', 'volatile' => true); - $devices[] = array('pattern' => '^tinc', 'volatile' => true); - $devices[] = array('pattern' => '^tun|^tap', 'volatile' => true); - $devices[] = array('pattern' => '^ue', 'volatile' => true); - $devices[] = array('pattern' => '^wg', 'volatile' => true); - $devices[] = array('pattern' => '^zt', 'volatile' => true); - $devices[] = array('pattern' => '_stf', 'volatile' => true); + /* historic handling of tunnel devices and other unstable things */ + $devices[] = ['pattern' => '^tap|^tun|^ue', 'volatile' => true]; return $devices; }