diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-06-26 05:51:07 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-06-26 05:51:07 +0100 |
commit | 6d8090456cbe6ddf11d285cf4059df30b6e627af (patch) | |
tree | f2fe26b177120ce2652741b5d5f5cee61bbb6786 /src/frontend/cli/sisyphus-cli.py | |
parent | f7e54cc8a29e5fa319ce21d6ec268e210397740a (diff) |
add remaining options from sisyphus bash backend/frontend
Diffstat (limited to 'src/frontend/cli/sisyphus-cli.py')
-rwxr-xr-x | src/frontend/cli/sisyphus-cli.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index 3d4fb3a..c99f86a 100755 --- a/src/frontend/cli/sisyphus-cli.py +++ b/src/frontend/cli/sisyphus-cli.py @@ -31,3 +31,15 @@ if "__main__" == __name__: sisyphus_pkg_search() elif "update" in sys.argv[1:]: sisyphus_pkg_system_update() + elif "belongs" in sys.argv[1:]: + sisyphus_pkg_belongs() + elif "depends" in sys.argv[1:]: + sisyphus_pkg_depends() + elif "files" in sys.argv[1:]: + sisyphus_pkg_files() + elif "sysinfo" in sys.argv[1:]: + sisyphus_pkg_sysinfo() + elif "help" in sys.argv[1:]: + sisyphus_pkg_help() + elif not sys.argv[1:]: + sisyphus_pkg_help() |