diff options
Diffstat (limited to 'src/backend/uninstallForceAll.py')
-rw-r--r-- | src/backend/uninstallForceAll.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/backend/uninstallForceAll.py b/src/backend/uninstallForceAll.py new file mode 100644 index 0000000..8a952c6 --- /dev/null +++ b/src/backend/uninstallForceAll.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") |