comparision in shell is =, not ==
Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
This commit is contained in:
parent
45df8dca11
commit
8819f54116
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# 2015 Steven Armstrong (steven-cdist at armstrong.cc)
|
||||
# 2015 Nico Schottelius (nico-cdist at schottelius.org)
|
||||
#
|
||||
# This file is part of cdist.
|
||||
#
|
||||
|
@ -74,7 +75,7 @@ cat << DONE
|
|||
verify_cksum() {
|
||||
cksum_is="\$(cksum "$stage_file" | cut -d' ' -f1,2)"
|
||||
cksum_should="$(cat "$__object/parameter/cksum" | cut -d' ' -f1,2)"
|
||||
if [ "\$cksum_is" == "\$cksum_should" ]; then
|
||||
if [ "\$cksum_is" = "\$cksum_should" ]; then
|
||||
return 0
|
||||
else
|
||||
return 1
|
||||
|
|
Loading…
Reference in a new issue