Fix unneeded bashism

Signed-off-by: Sebastien Bocahu <sebastien@ispfr.net>
pull/840/head
Sebastien Bocahu 12 years ago
parent 9e934acfca
commit a3ff6b1958

@ -647,7 +647,7 @@ class Runner(object):
def _remote_md5(self, conn, tmp, path):
''' takes a remote md5sum without requiring python, and returns 0 if no file '''
test = "rc=0; [[ -r \"%s\" ]] || rc=2; [[ -f \"%s\" ]] || rc=1" % (path,path)
test = "rc=0; [ -r \"%s\" ] || rc=2; [ -f \"%s\" ] || rc=1" % (path,path)
md5s = [
"(/usr/bin/md5sum %s 2>/dev/null)" % path,
"(/sbin/md5sum -q %s 2>/dev/null)" % path,

Loading…
Cancel
Save