From 7ad204c13898245cdea5acfa90be83e767276994 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Wed, 4 Feb 2015 10:58:14 +0100 Subject: Add uninstallation support. As part of this, made all plugins use a Installer baseclass. https://fedorahosted.org/ipsilon/ticket/38 Signed-off-by: Patrick Uiterwijk Reviewed-by: Rob Crittenden --- ipsilon/helpers/ipa.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ipsilon/helpers/ipa.py') diff --git a/ipsilon/helpers/ipa.py b/ipsilon/helpers/ipa.py index 58a77df..9298c08 100644 --- a/ipsilon/helpers/ipa.py +++ b/ipsilon/helpers/ipa.py @@ -22,6 +22,8 @@ import socket import subprocess import sys +from ipsilon.helpers.common import EnvHelpersInstaller + IPA_CONFIG_FILE = '/etc/ipa/default.conf' HTTPD_IPA_KEYTAB = '/etc/httpd/conf/ipa.keytab' @@ -42,9 +44,10 @@ failure (see logs) and retry. """ -class Installer(object): +class Installer(EnvHelpersInstaller): def __init__(self, *pargs): + super(Installer, self).__init__() self.name = 'ipa' self.ptype = 'helper' self.logger = None -- cgit