Fix unneeded bashism
Signed-off-by: Sebastien Bocahu <sebastien@ispfr.net>
This commit is contained in:
parent
9e934acfca
commit
a3ff6b1958
1 changed files with 1 additions and 1 deletions
|
@ -647,7 +647,7 @@ class Runner(object):
|
||||||
def _remote_md5(self, conn, tmp, path):
|
def _remote_md5(self, conn, tmp, path):
|
||||||
''' takes a remote md5sum without requiring python, and returns 0 if no file '''
|
''' 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 = [
|
md5s = [
|
||||||
"(/usr/bin/md5sum %s 2>/dev/null)" % path,
|
"(/usr/bin/md5sum %s 2>/dev/null)" % path,
|
||||||
"(/sbin/md5sum -q %s 2>/dev/null)" % path,
|
"(/sbin/md5sum -q %s 2>/dev/null)" % path,
|
||||||
|
|
Loading…
Reference in a new issue