summaryrefslogtreecommitdiff
path: root/doc/examples/update.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/update.py')
-rwxr-xr-xdoc/examples/update.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/examples/update.py b/doc/examples/update.py
new file mode 100755
index 00000000..be7bb679
--- /dev/null
+++ b/doc/examples/update.py
@@ -0,0 +1,13 @@
+import apt
+import apt_pkg
+import os.path
+
+if __name__ == "__main__":
+ apt_pkg.Config.Set("APT::Update::Pre-Invoke::",
+ "touch /tmp/update-about-to-run")
+ apt_pkg.Config.Set("APT::Update::Post-Invoke::",
+ "touch /tmp/update-was-run")
+ c = apt.Cache()
+ res = c.update(apt.progress.TextFetchProgress())
+ print "res: ",res
+ assert(os.path.exists("/tmp/update-about-to-run"))