aboutsummaryrefslogtreecommitdiff
path: root/whatmaps/debiandistro.py
diff options
context:
space:
mode:
Diffstat (limited to 'whatmaps/debiandistro.py')
-rw-r--r--whatmaps/debiandistro.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/whatmaps/debiandistro.py b/whatmaps/debiandistro.py
index 4a3d0db..3a47d50 100644
--- a/whatmaps/debiandistro.py
+++ b/whatmaps/debiandistro.py
@@ -26,7 +26,7 @@ except ImportError:
lsb_release = None
import logging
-import string
+import os
import subprocess
import sys
@@ -35,7 +35,7 @@ from . debianpkg import DebianPkg
from . pkg import PkgError
class DebianDistro(Distro):
- "Debian (dpkg) based distribution"""
+ "Debian (dpkg) based distribution"
id = 'Debian'
_pkg_services = { 'apache2-mpm-worker': [ 'apache2' ],
@@ -73,9 +73,15 @@ class DebianDistro(Distro):
@classmethod
def restart_service_cmd(klass, name):
+ """The command that should be used to start a service"""
return ['invoke-rc.d', name, 'restart']
@classmethod
+ def is_service_installed(klass, name):
+ """Whether the system has this service"""
+ return os.path.exists('/etc/init.d/%s' % name)
+
+ @classmethod
def has_apt(klass):
return True