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/info/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipsilon/info/common.py') diff --git a/ipsilon/info/common.py b/ipsilon/info/common.py index 06b71aa..4cd6663 100644 --- a/ipsilon/info/common.py +++ b/ipsilon/info/common.py @@ -102,10 +102,10 @@ class InfoProviderInstaller(object): def validate_args(self, args): return - def unconfigure(self, opts): + def unconfigure(self, opts, changes): return - def configure(self, opts): + def configure(self, opts, changes): raise NotImplementedError -- cgit