diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-09-30 18:42:19 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-09-30 18:42:19 +0100 |
commit | 1b8ab1074143dcdcb07a47b33e671b49b59fc69b (patch) | |
tree | a71ce3d0120700dfc99f0a7412af2e3b90de8386 /src/frontend/cli/sisyphus-cli.py | |
parent | 6c449119bc7593ade69be36b445a7be63a68ab00 (diff) |
sisyphus-backend : add rescue option, to reinit a lost or corrupted db; fix a widespread typo
Diffstat (limited to 'src/frontend/cli/sisyphus-cli.py')
-rwxr-xr-x | src/frontend/cli/sisyphus-cli.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index c6d3e3c..ee90c6f 100755 --- a/src/frontend/cli/sisyphus-cli.py +++ b/src/frontend/cli/sisyphus-cli.py @@ -16,14 +16,16 @@ if "__main__" == __name__: sisyphus_pkg_force_uninstall(PKGLIST) elif "remove-orphans" in sys.argv[1:]: sisyphus_pkg_remove_orphans() + elif "update" in sys.argv[1:]: + sisyphus_pkg_system_update elif "upgrade" in sys.argv[1:]: sisyphus_pkg_system_upgrade() elif "search" in sys.argv[1:]: sisyphus_pkg_search(PKGLIST) - elif "update" in sys.argv[1:]: - sisyphus_pkg_system_update() elif "spmsync" in sys.argv[1:]: sisyphus_pkg_spmsync() + elif "rescue" in sys.argv[1:]: + sisyphus_db_rescue() elif "sysinfo" in sys.argv[1:]: sisyphus_pkg_sysinfo() elif "help" in sys.argv[1:]: |