Skip to content

Commit 252a628

Browse files
Leons Petrazickisreevejd
authored andcommitted
- Name files .gz rather than .gzip to avoid gunzip issues
1 parent 811df17 commit 252a628

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [0.2.1][]
8+
### Fixed
9+
- Name files `.gz` rather than `.gzip` to avoid `gunzip` issues
10+
711
## [0.2.0][]
812
### Added
913
- You can skip backing up Mongo, MySQL, or files by not specifying

gamora/docker-entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ back_up_mongo() {
1313
return
1414
fi
1515

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
1717

1818
log "Taking mongo backup"
1919
monsoon ${NOTIFICATION_SETTINGS} backup mongo \
@@ -42,7 +42,7 @@ back_up_mysql() {
4242
return
4343
fi
4444

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
4646

4747
log "Taking mysql backup"
4848
monsoon ${NOTIFICATION_SETTINGS} backup mysql \

0 commit comments

Comments
 (0)