diff options
author | Elena Reshetova <elena.reshetova@intel.com> | 2013-01-28 09:38:08 +0200 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2013-02-02 16:44:45 -0800 |
commit | 3959da1846227711d97c17495aa4779e653a1b3a (patch) | |
tree | 2fd1e2a6260f5acc22056a81c20d75601c601d34 | |
parent | 9ba9d59fef7664535d8cfb8729d156dbe14e72a0 (diff) | |
download | librpm-tizen-3959da1846227711d97c17495aa4779e653a1b3a.tar.gz librpm-tizen-3959da1846227711d97c17495aa4779e653a1b3a.tar.bz2 librpm-tizen-3959da1846227711d97c17495aa4779e653a1b3a.zip |
Temporally making loading of a configured plugin optional
-rw-r--r-- | lib/transaction.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/transaction.c b/lib/transaction.c index 659a08656..fa17d34b7 100644 --- a/lib/transaction.c +++ b/lib/transaction.c @@ -1463,7 +1463,8 @@ static rpmRC rpmtsSetupTransactionPlugins(rpmts ts) if (rpmpluginsAddPlugin(ts->plugins, "transaction", (const char*)plugin) == RPMRC_FAIL) { /* any configured plugin failing to load is a failure */ - rc = RPMRC_FAIL; + // temporally make the loading policy relaxed: no failures + //rc = RPMRC_FAIL; } } plugin = strtok(NULL, delims); |