From 485baf6ee7a315d1af1086fe5b5da8cff6c4ba37 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Fri, 8 May 2015 18:12:06 +0200 Subject: Implement change registration This will make it possible for plugins to register what they have changed during installation, so that they can revert any changes they made during the uninstallation. https://fedorahosted.org/ipsilon/ticket/67 Signed-off-by: Patrick Uiterwijk Reviewed-by: Rob Crittenden --- ipsilon/helpers/ipa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipsilon/helpers/ipa.py') diff --git a/ipsilon/helpers/ipa.py b/ipsilon/helpers/ipa.py index a785edb..9c786f9 100644 --- a/ipsilon/helpers/ipa.py +++ b/ipsilon/helpers/ipa.py @@ -163,7 +163,7 @@ class Installer(EnvHelpersInstaller): pw = pwd.getpwnam(HTTPD_USER) os.chown(opts['gssapi_httpd_keytab'], pw.pw_uid, pw.pw_gid) - def configure_server(self, opts): + def configure_server(self, opts, changes): if opts['ipa'] != 'yes' and opts['ipa'] != 'auto': return if opts['ipa'] != 'yes' and opts['gssapi'] == 'no': -- cgit