Temporally making loading of a configured plugin optional
authorElena Reshetova <elena.reshetova@intel.com>
Mon, 28 Jan 2013 07:38:08 +0000 (09:38 +0200)
committerAnas Nashif <anas.nashif@intel.com>
Sun, 3 Feb 2013 00:44:45 +0000 (16:44 -0800)
lib/transaction.c

index 659a08656a4b952af27dbbd3a095010184bea91b..fa17d34b74652b78559ff77fb67313bd666f2abe 100644 (file)
@@ -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);