We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6af5d57 commit e4c9165Copy full SHA for e4c9165
1 file changed
ci/setup-cfengine-build-host.sh
@@ -50,6 +50,8 @@ function cleanup()
50
pkill -9 cf-execd || true
51
else
52
echo "No pkill available. Maybe some cf procs left over?"
53
+ # pgrep suggestion is ignored due to wanting POSIX compatability
54
+ # shellcheck disable=SC2009
55
ps -efl | grep cf
56
fi
57
ls -l /home
@@ -183,7 +185,7 @@ if ! /var/cfengine/bin/cf-agent -V; then
183
185
184
186
_VERSION=""
187
- cf-remote --log-level info $_VERSION install --clients localhost || true
188
+ cf-remote --log-level info "$_VERSION" install --clients localhost || true
189
190
191
if [ ! -x /var/cfengine/bin/cf-agent ]; then
0 commit comments