mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 10:10:25 +00:00
Fix final double quoting error
Fixes the following shellcheck error: SC2086: Double quote to prevent globbing and word splitting.
This commit is contained in:
parent
765944555c
commit
1a22209835
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue