diff options
Diffstat (limited to 'src/backend/uninstallAllForce.py')
-rw-r--r-- | src/backend/uninstallAllForce.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/backend/uninstallAllForce.py b/src/backend/uninstallAllForce.py deleted file mode 100644 index d2acc2d..0000000 --- a/src/backend/uninstallAllForce.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/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)) - portageExec.wait() - sisyphus.syncDatabase.localTable() - else: - sys.exit("\nYou need root permissions to do this, exiting!\n") |