Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pycklets / init_service_started.py
Size: Mime:
# -*- coding: utf-8 -*-

from pyckles import AutoPycklet


class InitServiceStarted(AutoPycklet):
    """Make sure an init service is started.

       Args:
         name: The name of the service.

    """

    FRECKLET_ID = "init-service-started"

    def __init__(self, name=None):

        super(InitServiceStarted, self).__init__(var_names=["name"])
        self._name = name

    @property
    def name(self):
        return self._name

    @name.setter
    def name(self, name):
        self._name = name