コード例 #1
0
 def stop(self):
     """Stop the service."""
     self.was_enabled = action_utils.webserver_is_enabled(
         self.web_name, kind=self.kind)
     if self.was_enabled:
         actions.superuser_run(
             'apache',
             ['disable', '--name', self.web_name, '--kind', self.kind])
コード例 #2
0
ファイル: __init__.py プロジェクト: mabkenar/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.webserver_is_enabled('deluge-plinth')
            and action_utils.service_is_enabled('deluge-web'))
コード例 #3
0
def is_enabled():
    """Return whether the module is enabled."""
    return action_utils.webserver_is_enabled('diaspora-plinth')
コード例 #4
0
ファイル: __init__.py プロジェクト: nikolas/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return action_utils.webserver_is_enabled('roundcube')
コード例 #5
0
ファイル: __init__.py プロジェクト: bhuvi8/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.webserver_is_enabled('deluge-plinth') and
            action_utils.service_is_enabled('deluge-web'))
コード例 #6
0
ファイル: __init__.py プロジェクト: SunilMohanAdapa/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.service_is_enabled(managed_services[0]) and
            action_utils.webserver_is_enabled('tahoe-plinth'))
コード例 #7
0
ファイル: __init__.py プロジェクト: mabkenar/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.service_is_enabled('transmission-daemon')
            and action_utils.webserver_is_enabled('transmission-plinth'))
コード例 #8
0
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.service_is_enabled('ejabberd') and
            action_utils.webserver_is_enabled('jwchat-plinth'))
コード例 #9
0
ファイル: __init__.py プロジェクト: peacekeeper/plinth
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.webserver_is_enabled('searx-freedombox')
            and os.path.exists('/etc/uwsgi/apps-enabled/searx.ini'))
コード例 #10
0
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.service_is_enabled(managed_services[0]) and
            action_utils.webserver_is_enabled('tahoe-plinth'))
コード例 #11
0
ファイル: __init__.py プロジェクト: fonfon/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return action_utils.webserver_is_enabled('ikiwiki-plinth')
コード例 #12
0
ファイル: __init__.py プロジェクト: vikassingh093/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.webserver_is_enabled('cockpit-freedombox')
            and action_utils.service_is_running('cockpit.socket'))
コード例 #13
0
def is_enabled():
    """Return whether the module is enabled."""
    return action_utils.webserver_is_enabled('gnu-social')
コード例 #14
0
 def is_enabled(self):
     """Return whether the Apache configuration is enabled."""
     return action_utils.webserver_is_enabled(self.web_name, kind=self.kind)
コード例 #15
0
ファイル: __init__.py プロジェクト: mikini/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return action_utils.service_is_enabled("ejabberd") and action_utils.webserver_is_enabled("jwchat-plinth")
コード例 #16
0
ファイル: __init__.py プロジェクト: freedombox/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.service_is_enabled('syncthing@syncthing') and
            action_utils.webserver_is_enabled('syncthing-plinth'))
コード例 #17
0
ファイル: __init__.py プロジェクト: pamungkaski/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return action_utils.webserver_is_enabled('shaarli')
コード例 #18
0
ファイル: __init__.py プロジェクト: sheelarajeshkumar/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.service_is_enabled('transmission-daemon') and
            action_utils.webserver_is_enabled('transmission-plinth'))
コード例 #19
0
def is_enabled():
    """Return whether the module is enabled."""
    return action_utils.webserver_is_enabled('roundcube')
コード例 #20
0
ファイル: __init__.py プロジェクト: debian-id/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return action_utils.webserver_is_enabled('shaarli')
コード例 #21
0
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.service_is_enabled('syncthing@syncthing')
            and action_utils.webserver_is_enabled('syncthing-plinth'))
コード例 #22
0
ファイル: __init__.py プロジェクト: SunilMohanAdapa/Plinth
def is_enabled():
    """Return whether the module is enabled."""
    return (action_utils.webserver_is_enabled('cockpit-freedombox') and
            action_utils.service_is_running('cockpit.socket'))