Skip to content

Commit 0aaba10

Browse files
committed
Merge branch 'master' into snh/audit-size
2 parents 1bad3aa + 8e9a938 commit 0aaba10

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

debian/changelog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
github-backup-utils (2.11.3) UNRELEASED; urgency=medium
2+
3+
* Update argument parsing and help/usage consistency #320
4+
* Fix failures variable #353
5+
* Remove other snapshot contents before removing the "incomplete" file #358
6+
* Backup and restore the management console password #361
7+
* Check for git before allowing SSH multiplex #362
8+
* Cleanup SSH multiplexing on exit #363
9+
* Filter cluster nodes by role during backup and restore #367
10+
* Optimise route generation and finalisation during cluster restores of pages #369
11+
* Allow extra rsync options to override default options #370
12+
13+
-- Colin Seymour <[email protected]> Wed, 28 Feb 2018 16:32:07 +0000
14+
115
github-backup-utils (2.11.2) UNRELEASED; urgency=medium
216

317
* Allow the restoration of configuration to Cluster #347

share/github-backup-utils/ghe-restore-es-rsync

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ elif [ "$GHE_VERSION_MAJOR" -gt 1 ]; then
5555
"$snapshot_dir/elasticsearch/" \
5656
"$(ssh_host_part "$GHE_HOSTNAME"):$GHE_REMOTE_DATA_USER_DIR/elasticsearch-restore" 1>&3
5757

58+
# restoring in >=2.14 will remove incompatible indices created with 1.x.
59+
if [ "$GHE_VERSION_MAJOR" -eq 2 ] && [ "$GHE_VERSION_MINOR" -ge 14 ]; then
60+
ghe-ssh "$GHE_HOSTNAME" -- "sudo /usr/local/share/enterprise/ghe-es-remove-1x-indices"
61+
fi
62+
5863
# restoring v11.10.x ES snapshot into a v11.10.x appliance
5964
else
6065
# Use GNU tar on BSDs.

share/github-backup-utils/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.11.2
1+
2.11.3

0 commit comments

Comments
 (0)