mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
net/ndproxy: sync
This commit is contained in:
parent
045a3b8a8e
commit
ecced78fab
2 changed files with 5 additions and 2 deletions
|
|
@ -55,6 +55,7 @@ net/google-cloud-sdk -- Google Cloud SDK
|
|||
net/haproxy -- Reliable, high performance TCP/HTTP load balancer
|
||||
net/igmp-proxy -- IGMP-Proxy Service
|
||||
net/mdns-repeater -- Proxy multicast DNS between networks
|
||||
net/ndproxy -- Neighbor Discovery Proxy
|
||||
net/ntopng -- Traffic Analysis and Flow Collection
|
||||
net/radsecproxy -- RADIUS proxy provides both RADIUS UDP and TCP/TLS (RadSec) transport
|
||||
net/realtek-re -- Realtek re(4) vendor driver
|
||||
|
|
|
|||
|
|
@ -32,8 +32,10 @@ function ndproxy_services()
|
|||
|
||||
$services = [];
|
||||
|
||||
if (isset($config['OPNsense']['ndproxy']['general']['enabled']) &&
|
||||
$config['OPNsense']['ndproxy']['general']['enabled'] == 1) {
|
||||
if (
|
||||
isset($config['OPNsense']['ndproxy']['general']['enabled']) &&
|
||||
$config['OPNsense']['ndproxy']['general']['enabled'] == 1
|
||||
) {
|
||||
$services[] = [
|
||||
'description' => gettext('Ndproxy'),
|
||||
'configd' => [
|
||||
|
|
|
|||
Loading…
Reference in a new issue