From 72a4d291ebc956dcdca330ba3a1e744d1ba0aaeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eray=20=C3=96zkural?= Date: Thu, 27 Oct 2005 00:28:22 +0000 Subject: [PATCH] * fix: the pending flag is set also when comar is ignored (which might be taken to imply that postinstall is postponed, but we don't have implications in Options right now...) --- pisi/installdb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pisi/installdb.py b/pisi/installdb.py index 42430f4e..f876b818 100644 --- a/pisi/installdb.py +++ b/pisi/installdb.py @@ -140,7 +140,8 @@ class InstallDB: pkg = str(pkg) if self.is_installed(pkg): raise InstallDBError(_("Already installed")) - if ctx.config.get_option('postpone_postinstall'): + if ctx.config.get_option('ignore_comar') or \ + ctx.config.get_option('postpone_postinstall'): state = 'ip' self.dp[pkg] = True else: