-
Notifications
You must be signed in to change notification settings - Fork 932
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
Backup/restore specific applications #2034
Open
lamelas
wants to merge
3
commits into
lra:master
Choose a base branch
from
lamelas:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+26
−8
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 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 |
---|---|---|
|
@@ -5,10 +5,10 @@ | |
|
||
Usage: | ||
mackup list | ||
mackup [options] backup | ||
mackup [options] restore | ||
mackup [options] backup [--] [<application> ...] | ||
mackup [options] restore [--] [<application> ...] | ||
mackup show <application> | ||
mackup [options] uninstall | ||
mackup [options] uninstall [--] [<application> ...] | ||
mackup (-h | --help) | ||
mackup --version | ||
|
||
|
@@ -87,8 +87,14 @@ def printAppHeader(app_name): | |
# Check the env where the command is being run | ||
mckp.check_for_usable_backup_env() | ||
|
||
applications = sorted(mckp.get_apps_to_backup()) | ||
|
||
# To allow for specific applications to be backed up, we replace the full list with only the valid ones from the command line | ||
if args["<application>"]: | ||
applications = list(set(args["<application>"]) & set(applications)) | ||
|
||
# Backup each application | ||
for app_name in sorted(mckp.get_apps_to_backup()): | ||
for app_name in applications: | ||
app = ApplicationProfile(mckp, app_db.get_files(app_name), dry_run, verbose) | ||
printAppHeader(app_name) | ||
app.backup() | ||
|
@@ -115,7 +121,13 @@ def printAppHeader(app_name): | |
# Mackup has already been done | ||
app_names.discard(MACKUP_APP_NAME) | ||
|
||
for app_name in sorted(app_names): | ||
app_names = sorted(app_names) | ||
|
||
# To allow for specific applications to be restored up, we replace the full list with only the valid ones from the command line | ||
if args["<application>"]: | ||
app_names = list(set(args["<application>"]) & set(app_names)) | ||
|
||
for app_name in app_names: | ||
app = ApplicationProfile(mckp, app_db.get_files(app_name), dry_run, verbose) | ||
printAppHeader(app_name) | ||
app.restore() | ||
|
@@ -138,7 +150,13 @@ def printAppHeader(app_name): | |
app_names = mckp.get_apps_to_backup() | ||
app_names.discard(MACKUP_APP_NAME) | ||
|
||
for app_name in sorted(app_names): | ||
app_names = sorted(app_names) | ||
|
||
# To allow for specific applications to be uninstalled, we replace the full list with only the valid ones from the command line | ||
if args["<application>"]: | ||
app_names = list(set(args["<application>"]) & set(app_names)) | ||
|
||
for app_name in app_names: | ||
app = ApplicationProfile( | ||
mckp, app_db.get_files(app_name), dry_run, verbose | ||
) | ||
|
@@ -179,8 +197,8 @@ def printAppHeader(app_name): | |
|
||
elif args["show"]: | ||
mckp.check_for_usable_environment() | ||
app_name = args["<application>"] | ||
|
||
app_name = args["<application>"][0] # Needed because args["<application>"] is now a list | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why not support multiple applications also in show command? |
||
# Make sure the app exists | ||
if app_name not in app_db.get_app_names(): | ||
sys.exit("Unsupported application: {}".format(app_name)) | ||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should it fail here if any explicit application is not recognized?
silent ignoring them seems dangerous, as it would imply everything went fine
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it should also be sorted again, to maintain the same behaviour