blob: c8a8bd9a406b8d5e9dd4d7424008addf9b584b3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/usr/bin/python3
import sys
from libsisyphus import *
check_system_mode()
PKGLIST = sys.argv[2:]
if "__main__" == __name__:
if "install" in sys.argv[1:]:
sisyphus_pkg_install(PKGLIST)
elif "uninstall" in sys.argv[1:]:
sisyphus_pkg_uninstall(PKGLIST)
elif "force-uninstall" in sys.argv[1:]:
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 "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:]:
sisyphus_pkg_help()
elif not sys.argv[1:]:
sisyphus_pkg_help()
|