summaryrefslogtreecommitdiff
path: root/frontend/cli/sisyphus-cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/cli/sisyphus-cli.py')
-rwxr-xr-xfrontend/cli/sisyphus-cli.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/frontend/cli/sisyphus-cli.py b/frontend/cli/sisyphus-cli.py
deleted file mode 100755
index 3d4fb3a..0000000
--- a/frontend/cli/sisyphus-cli.py
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/python3
-
-import sys
-import subprocess
-from libsisyphus import *
-
-check_if_srcmode()
-
-if "__main__" == __name__:
- if "install" in sys.argv[1:]:
- sisyphus_pkg_install()
- elif "uninstall" in sys.argv[1:]:
- sisyphus_pkg_uninstall()
- elif "force-uninstall" in sys.argv[1:]:
- sisyphus_pkg_force_uninstall()
- elif "remove-orphans" in sys.argv[1:]:
- sisyphus_pkg_remove_orphans()
- elif "upgrade" in sys.argv[1:]:
- sisyphus_pkg_system_upgrade()
- elif "auto-install" in sys.argv[1:]:
- sisyphus_pkg_auto_install()
- elif "auto-uninstall" in sys.argv[1:]:
- sisyphus_pkg_auto_uninstall()
- elif "auto-force-uninstall" in sys.argv[1:]:
- sisyphus_pkg_auto_force_uninstall()
- elif "auto-remove-orphans" in sys.argv[1:]:
- sisyphus_pkg_auto_remove_orphans()
- elif "auto-upgrade" in sys.argv[1:]:
- sisyphus_pkg_auto_system_upgrade()
- elif "search" in sys.argv[1:]:
- sisyphus_pkg_search()
- elif "update" in sys.argv[1:]:
- sisyphus_pkg_system_update()