This commit is contained in:
Ad Schellevis 2019-10-24 10:08:25 +02:00
parent 953ada8761
commit c6cb6df8ff

View File

@ -42,6 +42,14 @@ function pf_services()
'nocheck' => true,
'name' => 'pf',
);
$services[] = array(
'description' => gettext('Interface groups'),
'nocheck' => true,
'php' => array(
'start' => 'interfaces_group_setup'
),
'name' => 'ifgroups',
);
}
return $services;
@ -167,3 +175,16 @@ function pf_firewall($fw)
}
}
}
function pf_xmlrpc_sync()
{
$result = array();
$result[] = array(
'description' => gettext('Firewall Groups'),
'section' => 'ifgroups.ifgroupentry',
'id' => 'ifgroups',
);
return $result;
}