diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-09-17 19:25:10 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-09-17 19:25:10 +0100 |
commit | fb5e03d66502482c3e6b4b04d92a46898403e98c (patch) | |
tree | f28785e5c3e4abd65400507e8698354c94302f5f /src/backend/uninstallAllForce.py | |
parent | e1562a71d6483021d332bccbfc5a3086688bc58c (diff) |
reorder imports alphabetically
Diffstat (limited to 'src/backend/uninstallAllForce.py')
-rw-r--r-- | src/backend/uninstallAllForce.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/backend/uninstallAllForce.py b/src/backend/uninstallAllForce.py new file mode 100644 index 0000000..8a952c6 --- /dev/null +++ b/src/backend/uninstallAllForce.py @@ -0,0 +1,14 @@ +#!/usr/bin/python3 + +import subprocess +import sys +import sisyphus.checkEnvironment +import sisyphus.syncDatabase + +def start(pkgname): + if sisyphus.checkEnvironment.root(): + portageExec = subprocess.Popen(['emerge', '--quiet', '--unmerge', '--ask'] + list(pkgname), stdout=subprocess.PIPE, stderr=subprocess.PIPE) + stdout, stderr = portageExec.communicate() + sisyphus.syncDatabase.syncLocal() + else: + sys.exit("\nYou need root permissions to do this, exiting!\n") |