summaryrefslogtreecommitdiff
path: root/apt-pkg/algorithms.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2008-02-21 15:03:30 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2008-02-21 15:03:30 +0100
commitb098f0f4e4bf6538182dc7b9127566b483477806 (patch)
tree392178fe13c38081c7ac49b4d1db63ec2fcfad4f /apt-pkg/algorithms.cc
parent1fdd4ac46faf85127aa923ef16220f8951f3f182 (diff)
parente06c72cd8d39433b04883f35dea81619b8464b0e (diff)
* apt-pkg/algorithms.cc:
- add APT::Update::Post-Invoke-Success script slot (LP: #188127)
Diffstat (limited to 'apt-pkg/algorithms.cc')
-rw-r--r--apt-pkg/algorithms.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc
index 625b49c3d..158564baf 100644
--- a/apt-pkg/algorithms.cc
+++ b/apt-pkg/algorithms.cc
@@ -1371,7 +1371,11 @@ bool ListUpdate(pkgAcquireStatus &Stat,
return _error->Error(_("Some index files failed to download, they have been ignored, or old ones used instead."));
- // Run the scripts if all was fine
+ // Run the success scripts if all was fine
+ if(!TransientNetworkFailure && !Failed)
+ RunScripts("APT::Update::Post-Invoke-Success");
+
+ // Run the other scripts
RunScripts("APT::Update::Post-Invoke");
return true;
}