summaryrefslogtreecommitdiffstats
path: root/ipapython/platform/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipapython/platform/base.py')
-rw-r--r--ipapython/platform/base.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/ipapython/platform/base.py b/ipapython/platform/base.py
index 99189a10..d177cc82 100644
--- a/ipapython/platform/base.py
+++ b/ipapython/platform/base.py
@@ -21,8 +21,9 @@ from ipalib.plugable import MagicDict
# Canonical names of services as IPA wants to see them. As we need to have *some* naming,
# set them as in Red Hat distributions. Actual implementation should make them available
# through knownservices.<name> and take care of remapping internally, if needed
-wellknownservices = ['certmonger', 'dirsrv', 'httpd', 'ipa', 'krb5kdc', 'messagebus',
- 'nslcd', 'nscd', 'ntpd', 'portmap', 'rpcbind', 'kadmin']
+wellknownservices = ['certmonger', 'dirsrv', 'httpd', 'ipa', 'krb5kdc',
+ 'messagebus', 'nslcd', 'nscd', 'ntpd', 'portmap',
+ 'rpcbind', 'kadmin', 'sshd']
class AuthConfig(object):
"""
@@ -141,6 +142,9 @@ class PlatformService(object):
def remove(self, instance_name=""):
return
+ def get_config_dir(self, instance_name=""):
+ return
+
class KnownServices(MagicDict):
"""
KnownServices is an abstract class factory that should give out instances of well-known