GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Ubic::Service::Common(3) User Contributed Perl Documentation Ubic::Service::Common(3)

Ubic::Service::Common - common way to construct new service by specifying several callbacks

version 1.60

    $service = Ubic::Service::Common->new({
        start => sub {
            # implementation-specific
        },
        stop => sub {
            # implementation-specific
        },
        status => sub {
            # implementation-specific
        },
        name => "my-service",
        port => 1234,
    });
    $service->start;

Each service should provide safe start(), stop() and status() methods.

Construct service object.

Possible parameters:

Mandatory sub reference providing service start mechanism.
The same for stop.
Mandatory sub reference checking if service is alive.

It should return one of "running", "not running", "broken" values.

This code will be used as safety check against double start and in watchdog checks.

Service's name.

Optional, will usually be set by upper-level multiservice. Don't set it unless you know what you're doing.

User under which daemon will be started. Optional, default is "root".
Group under which daemon will be started. Optional, default is all user groups.

Value can be scalar or arrayref.

Service's port.

Vyacheslav Matyukhin <mmcleric@yandex-team.ru>

This software is copyright (c) 2016 by Yandex LLC.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2016-08-24 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.