Skip to content

Commit f9169c1

Browse files
committed
AGENT-863: Change $@ to "$*" to fix shellcheck
ipAddresses should be a string containing a space delimited list of IP addresses to be monitored.
1 parent 7f7c54c commit f9169c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/user/agent/add-node/node-joiner-monitor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ $# -eq 0 ]; then
77
exit 1
88
fi
99

10-
ipAddresses=$@
10+
ipAddresses="$*"
1111

1212
# Setup a cleanup function to ensure to remove the temporary
1313
# file when the script will be completed.

0 commit comments

Comments
 (0)