File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
6
6
7
+ ## [ 0.2.1] [ ]
8
+ ### Fixed
9
+ - Name files ` .gz ` rather than ` .gzip ` to avoid ` gunzip ` issues
10
+
7
11
## [ 0.2.0] [ ]
8
12
### Added
9
13
- You can skip backing up Mongo, MySQL, or files by not specifying
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ back_up_mongo() {
13
13
return
14
14
fi
15
15
16
- FILENAME=mongo_backup_$( date +" %Y%m%d_%H%M%S" ) .archive.gzip
16
+ FILENAME=mongo_backup_$( date +" %Y%m%d_%H%M%S" ) .archive.gz
17
17
18
18
log " Taking mongo backup"
19
19
monsoon ${NOTIFICATION_SETTINGS} backup mongo \
@@ -42,7 +42,7 @@ back_up_mysql() {
42
42
return
43
43
fi
44
44
45
- FILENAME=mysql_backup_$( date +" %Y%m%d_%H%M%S" ) .archive.gzip
45
+ FILENAME=mysql_backup_$( date +" %Y%m%d_%H%M%S" ) .archive.gz
46
46
47
47
log " Taking mysql backup"
48
48
monsoon ${NOTIFICATION_SETTINGS} backup mysql \
You can’t perform that action at this time.
0 commit comments