sysutils/monit: xmlrpc sync via @fbrendel

This commit is contained in:
Franco Fichtner 2017-04-20 21:35:22 +02:00
parent a7ff0f82f6
commit 1ec32e34f8

View file

@ -1,4 +1,5 @@
<?php
/*
Copyright (C) 2017 EURO-LOG AG
All rights reserved.
@ -46,3 +47,20 @@ function monit_services()
}
return $services;
}
/**
* sync configuration via xmlrpc
* @return array
*/
function monit_xmlrpc_sync()
{
$result = array();
$result[] = array(
'description' => gettext('Monit System Monitoring'),
'section' => 'OPNsense.monit',
'id' => 'monit',
);
return $result;
}