Skip to content

Commit

Permalink
CAT-1147 spec fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinesh Gujar authored and Dinesh Gujar committed Jul 31, 2023
1 parent a4229dc commit f8684b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/mysqlbackup.sh.epp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ DIR=<%= $backupdir %>
ROTATE=<%= [ Integer($backuprotate) - 1, 0 ].max %>

# Create temporary mysql cnf file.
TMPFILE='mktemp /tmp/backup.XXXXXX' || exit 1
TMPFILE=`mktemp /tmp/backup.XXXXXX` || exit 1
echo -e "[client]\npassword=$PASS\nuser=$USER\nmax_allowed_packet=$MAX_ALLOWED_PACKET" > '$TMPFILE'

<% if $prescript { -%>
Expand Down

0 comments on commit f8684b8

Please sign in to comment.