Beispiel #1
0
function display_service_details()
{
    global $pbicdir;
    // Check if this has a service configuration
    if (file_exists($pbicdir . "/service-configure")) {
        parse_service_config();
    }
}
Beispiel #2
0
function display_service_details()
{
    global $pbicdir;
    // Does this have rc.d scripts to start?
    if (file_exists($pbicdir . "/service-start")) {
        parse_service_start();
    }
    // Check if this has a service configuration
    if (file_exists($pbicdir . "/service-configure")) {
        parse_service_config();
    }
}