summaryrefslogtreecommitdiffstats
path: root/ipaplatform
diff options
context:
space:
mode:
Diffstat (limited to 'ipaplatform')
-rw-r--r--ipaplatform/base/paths.py1
-rw-r--r--ipaplatform/base/services.py3
-rw-r--r--ipaplatform/redhat/services.py7
3 files changed, 1 insertions, 10 deletions
diff --git a/ipaplatform/base/paths.py b/ipaplatform/base/paths.py
index 896fa9d98..0ba64efdb 100644
--- a/ipaplatform/base/paths.py
+++ b/ipaplatform/base/paths.py
@@ -99,6 +99,7 @@ class BasePathNamespace(object):
SAMBA_KEYTAB = "/etc/samba/samba.keytab"
SMB_CONF = "/etc/samba/smb.conf"
LIMITS_CONF = "/etc/security/limits.conf"
+ SSH_CONFIG_DIR = "/etc/ssh"
SSH_CONFIG = "/etc/ssh/ssh_config"
SSHD_CONFIG = "/etc/ssh/sshd_config"
SSSD_CONF = "/etc/sssd/sssd.conf"
diff --git a/ipaplatform/base/services.py b/ipaplatform/base/services.py
index 071fe2a32..9c9a5ae78 100644
--- a/ipaplatform/base/services.py
+++ b/ipaplatform/base/services.py
@@ -185,9 +185,6 @@ class PlatformService(object):
def remove(self, instance_name=""):
return
- def get_config_dir(self, instance_name=""):
- return
-
class SystemdService(PlatformService):
SYSTEMD_SRV_TARGET = "%s.target.wants"
diff --git a/ipaplatform/redhat/services.py b/ipaplatform/redhat/services.py
index 99904ce9f..cc5d67477 100644
--- a/ipaplatform/redhat/services.py
+++ b/ipaplatform/redhat/services.py
@@ -186,11 +186,6 @@ class RedHatIPAService(RedHatService):
self.restart(instance_name)
-class RedHatSSHService(RedHatService):
- def get_config_dir(self, instance_name=""):
- return '/etc/ssh'
-
-
class RedHatCAService(RedHatService):
def wait_until_running(self):
root_logger.debug('Waiting until the CA is running')
@@ -248,8 +243,6 @@ def redhat_service_class_factory(name, api=None):
return RedHatDirectoryService(name, api)
if name == 'ipa':
return RedHatIPAService(name, api)
- if name == 'sshd':
- return RedHatSSHService(name, api)
if name in ('pki-tomcatd', 'pki_tomcatd'):
return RedHatCAService(name, api)
return RedHatService(name, api)