Skip to content

Commit 3b73ea2

Browse files
committed
v2.5.2
1 parent e350899 commit 3b73ea2

File tree

2 files changed

+31
-25
lines changed

2 files changed

+31
-25
lines changed

CHANGELOG.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## 2.5.1-01 - (2010-07-06)
4+
- Fixed pathname bug item #3025849 (by Johannes Kolter)
5+
36
## 2.5.1 - (2010-07-04)
47
- Added support for default and optional config file. (by Johannes Kolter)
58
- Rotating after backup was successful whith find(1). (by Johannes Kolter)
@@ -8,11 +11,11 @@
811
- Added rotation of 5 monthly backups
912
- Now all old backups are deleted, not only the most recent one. (inspired by [email protected])
1013
- Use Debian special-file to access database (by Johannes Kolter)
11-
- Fixed bug ID: 1438565
14+
- Fixed bug ID: #1438565
1215
- Moved IO redirection to a place before decicions are made and actions are taken. (inspired by Derk Bernhardt)
13-
- Fixed bug ID: 3000316 (reported by Sascha Feldhorst)
14-
- Fixed bug ID: 1529458 (reported by Natalie (njwood))
15-
- Fixed bug ID: 1548919 (reported by Piotr Kuczynski)
16+
- Fixed bug ID: #3000316 (reported by Sascha Feldhorst)
17+
- Fixed bug ID: #1529458 (reported by Natalie (njwood))
18+
- Fixed bug ID: #1548919 (reported by Piotr Kuczynski)
1619

1720
## 2.5 - (2006-01-15)
1821
- Added support for setting MAXIMUM_PACKET_SIZE and SOCKET parameters. (suggested by Yvo van Doorn)

automysqlbackup.sh

+24-21
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,8 @@ fi
262262
# Change Log
263263
#=====================================================================
264264
#
265+
# VER 2.5.1-01 - (2010-07-06)
266+
# - Fixed pathname bug item #3025849 (by Johannes Kolter)
265267
# VER 2.5.1 - (2010-07-04)
266268
# - Added support for default and optional config file (by Johannes Kolter)
267269
# - Rotating after backup was successful whith find(1) (by Johannes Kolter)
@@ -275,9 +277,9 @@ fi
275277
# - Fixed bug ID: 1438565
276278
# Moved IO redirection to a place before decicions are made and actions are taken.
277279
# (inspired by Derk Bernhardt)
278-
# - Fixed bug ID: 3000316 (reported by Sascha Feldhorst)
279-
# - Fixed bug ID: 1529458 (reported by Natalie ( njwood ))
280-
# - Fixed bug ID: 1548919 (reported by Piotr Kuczynski)
280+
# - Fixed bug ID: #3000316 (reported by Sascha Feldhorst)
281+
# - Fixed bug ID: #1529458 (reported by Natalie ( njwood ))
282+
# - Fixed bug ID: #1548919 (reported by Piotr Kuczynski)
281283
# VER 2.5 - (2006-01-15)
282284
# Added support for setting MAXIMUM_PACKET_SIZE and SOCKET parameters (suggested by Yvo van Doorn)
283285
# VER 2.4 - (2006-01-23)
@@ -374,24 +376,25 @@ fi
374376
#
375377
# Full pathname to binaries to avoid problems with aliases and builtins etc.
376378
#
377-
AWK="/usr/bin/gawk"
378-
LOGGER="/usr/bin/logger"
379-
ECHO="/bin/echo"
380-
CAT="/bin/cat"
381-
BASENAME="/usr/bin/basename"
382-
DATEC="/bin/date"
383-
DU="/usr/bin/du"
384-
EXPR="/usr/bin/expr"
385-
FIND="/usr/bin/find"
386-
RM="/bin/rm"
387-
MYSQL="/usr/bin/mysql"
388-
MYSQLDUMP="/usr/bin/mysqldump"
389-
GZIP="/bin/gzip"
390-
BZIP2="/bin/bzip2"
391-
CP="/bin/cp"
392-
HOSTNAMEC="/bin/hostname"
393-
SED="/bin/sed"
394-
GREP="/bin/grep"
379+
WHICH="`which which`"
380+
AWK="`${WHICH} gawk`"
381+
LOGGER="`${WHICH} logger`"
382+
ECHO="`${WHICH} echo`"
383+
CAT="`${WHICH} cat`"
384+
BASENAME="`${WHICH} basename`"
385+
DATEC="`${WHICH} date`"
386+
DU="`${WHICH} du`"
387+
EXPR="`${WHICH} expr`"
388+
FIND="`${WHICH} find`"
389+
RM="`${WHICH} rm`"
390+
MYSQL="`${WHICH} mysql`"
391+
MYSQLDUMP="`${WHICH} mysqldump`"
392+
GZIP="`${WHICH} gzip`"
393+
BZIP2="`${WHICH} bzip2`"
394+
CP="`${WHICH} cp`"
395+
HOSTNAMEC="`${WHICH} hostname`"
396+
SED="`${WHICH} sed`"
397+
GREP="`${WHICH} grep`"
395398

396399
function get_debian_pw() {
397400
if [ -r /etc/mysql/debian.cnf ]; then

0 commit comments

Comments
 (0)