Fix final double quoting error

Fixes the following shellcheck error:

SC2086: Double quote to prevent globbing and word splitting.
This commit is contained in:
rallytime 2018-05-31 13:35:19 -04:00
parent 765944555c
commit 1a22209835
No known key found for this signature in database
GPG key ID: E8F1A4B90D0DEA19

View file

@ -6656,8 +6656,8 @@ fi
# Drop the master address if passed
if [ "$_SALT_MASTER_ADDRESS" != "null" ]; then
[ ! -d "$_SALT_ETC_DIR/minion.d" ] && mkdir -p "$_SALT_ETC_DIR/minion.d"
cat <<_eof > $_SALT_ETC_DIR/minion.d/99-master-address.conf
master: $_SALT_MASTER_ADDRESS
cat <<_eof > "$_SALT_ETC_DIR/minion.d/99-master-address.conf
master: $_SALT_MASTER_ADDRESS"
_eof
fi