Skip to content

Commit

Permalink
Merge pull request #2717 from kgaillot/fixes
Browse files Browse the repository at this point in the history
Minor clean-up before 2.1.3 release
  • Loading branch information
kgaillot committed May 26, 2022
2 parents 9e55ba8 + 761f125 commit b387f89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cts/lab/cts.in
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ while true; do
for f in $files; do
rm -f $cts_root/$f
echo "Downloading helper script $f from GitHub"
wget -O "$cts_root/$f" "$(REPO)/$f"
wget -O "$cts_root/$f" "${REPO}/$f"
chmod +x $cts_root/$f
done
shift
Expand All @@ -171,14 +171,14 @@ export PATH="$PATH:$cts_root"
which cluster-helper &>/dev/null
if [ $? != 0 ]; then
echo $0 needs the cluster-helper script to be in your path
echo "You can obtain it from: $(REPO)/cluster-helper"
echo "You can obtain it from: ${REPO}/cluster-helper"
exit 1
fi

which cluster-clean &>/dev/null
if [ $? != 0 ]; then
echo $0 needs the cluster-clean script to be in your path
echo "You can obtain it from: $(REPO)/cluster-clean"
echo "You can obtain it from: ${REPO}/cluster-clean"
exit 1
fi

Expand Down
1 change: 1 addition & 0 deletions lib/common/mainloop.c
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,7 @@ mainloop_add_ipc_server_with_prio(const char *name, enum qb_ipc_type type,
rc = qb_ipcs_run(server);
if (rc < 0) {
crm_err("Could not start %s IPC server: %s (%d)", name, pcmk_strerror(rc), rc);
qb_ipcs_destroy(server);
return NULL;
}

Expand Down

0 comments on commit b387f89

Please sign in to comment.