Browse Source

Fixing apt_ppa type - can't use double equals with dash

ssh_callback
Tyler Akins 10 years ago
parent
commit
1485381340
  1. 2
      cdist/conf/type/__apt_ppa/gencode-remote

2
cdist/conf/type/__apt_ppa/gencode-remote vendored

@ -22,7 +22,7 @@ name="$__object_id"
state_should="$(cat "$__object/parameter/state")"
state_is="$(cat "$__object/explorer/state")"
if [ "$state_should" == "$state_is" ]; then
if [ "$state_should" = "$state_is" ]; then
# Nothing to do, move along
exit 0
fi

Loading…
Cancel
Save