-
Notifications
You must be signed in to change notification settings - Fork 624
Add support for backing up repositories via gitbackups #536
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
8cb7d3a
Suffix existing script with '-rsync' to differentiate against incomin…
cainejette b2ed6b0
Add placeholder script 'ghe-backup-repositories-gitbackups'
cainejette b5691c7
Call backup-repositories script
cainejette 16bc3ec
Introduce fork in backup flow for backup mechanism
cainejette 6c36e99
Change ghe-ssh target from host to GHE_HOSTNAME
cainejette c7159e3
Update comments
cainejette add11d4
update permissions on backup script
da4321b
Log which mechanism is being used for repository backup
cainejette 30fb1d8
Protect against appliance not supporting gitbackups-powered repositor…
cainejette 5bed84c
Remove comment after confirming existing config setting is OK to re-use.
cainejette 566902e
Exit early if the appliance is set to use gitbackups for repositories…
cainejette 91f8cc2
Update bin/ghe-backup
oakeyc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
share/github-backup-utils/ghe-backup-repositories-gitbackups
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
#/ Usage: ghe-backup-repositories-gitbackups | ||
#/ Take an online, incremental snapshot of all Git repository data using gitbackups. | ||
#/ | ||
#/ Note: This command typically isn't called directly. It's invoked by | ||
#/ ghe-backup. | ||
set -e | ||
|
||
# Bring in the backup configuration | ||
# shellcheck source=share/github-backup-utils/ghe-backup-config | ||
. "$( dirname "${BASH_SOURCE[0]}" )/ghe-backup-config" | ||
|
||
bm_start "$(basename $0)" | ||
|
||
echo "github-env ./bin/backup-repositories" | ghe-ssh "$GHE_HOSTNAME" -- /bin/bash | ||
oakeyc marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
bm_end "$(basename $0)" |
4 changes: 2 additions & 2 deletions
4
...thub-backup-utils/ghe-backup-repositories → ...ackup-utils/ghe-backup-repositories-rsync
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.