summaryrefslogtreecommitdiffstats
path: root/ipaplatform/base
diff options
context:
space:
mode:
Diffstat (limited to 'ipaplatform/base')
-rw-r--r--ipaplatform/base/paths.py1
-rw-r--r--ipaplatform/base/services.py3
2 files changed, 1 insertions, 3 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"