summaryrefslogtreecommitdiffstats
path: root/shared/deltarpm.py
diff options
context:
space:
mode:
authorJonathan Dieter <jdieter@gmail.com>2007-03-26 21:40:10 +0300
committerJonathan Dieter <jdieter@gmail.com>2007-03-26 21:40:10 +0300
commitff77b8f02a429541f08829536fc8e4da5f38b6e4 (patch)
tree50fab07b79106226f37c6df07952e83f308eb7ae /shared/deltarpm.py
parentb345ca9463e89180c510f0e31959778a4122c501 (diff)
downloadpresto-ff77b8f02a429541f08829536fc8e4da5f38b6e4.tar.gz
presto-ff77b8f02a429541f08829536fc8e4da5f38b6e4.tar.xz
presto-ff77b8f02a429541f08829536fc8e4da5f38b6e4.zip
Do full (slow) MD5 check when checking to see if deltarpm can be applied against disk contents
Signed-off-by: Jonathan Dieter <jdieter@gmail.com>
Diffstat (limited to 'shared/deltarpm.py')
-rw-r--r--shared/deltarpm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/deltarpm.py b/shared/deltarpm.py
index 710a8bb..a2aea2e 100644
--- a/shared/deltarpm.py
+++ b/shared/deltarpm.py
@@ -80,7 +80,7 @@ class DeltaRpmWrapper:
constructs file names and paths based on given RpmDescription and instance settings for directories"""
self.conduit.info(7, '%s.verify(%s)' % (self.__class__, sequence))
p = Process(self.conduit)
- p.run(APPLY, '-s', sequence)
+ p.run(APPLY, '-c', '-s', sequence)
if p.returnCode():
# in case of error, raise exception
raise Exception("Could not verify sequence of deltarpm: %d" % (p.returnCode()))