File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed
share/github-backup-utils Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
15
github-backup-utils (2.11.2) UNRELEASED; urgency=medium
2
16
3
17
* Allow the restoration of configuration to Cluster #347
Original file line number Diff line number Diff line change @@ -55,6 +55,11 @@ elif [ "$GHE_VERSION_MAJOR" -gt 1 ]; then
55
55
" $snapshot_dir /elasticsearch/" \
56
56
" $( ssh_host_part " $GHE_HOSTNAME " ) :$GHE_REMOTE_DATA_USER_DIR /elasticsearch-restore" 1>&3
57
57
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
+
58
63
# restoring v11.10.x ES snapshot into a v11.10.x appliance
59
64
else
60
65
# Use GNU tar on BSDs.
Original file line number Diff line number Diff line change 1
- 2.11.2
1
+ 2.11.3
You can’t perform that action at this time.
0 commit comments