diff options
Diffstat (limited to 'src/backend/uninstall.py')
-rw-r--r-- | src/backend/uninstall.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py index 748e085..2537b74 100644 --- a/src/backend/uninstall.py +++ b/src/backend/uninstall.py @@ -3,9 +3,12 @@ import subprocess import sisyphus.check import sisyphus.database +import sys def start(pkgname): - sisyphus.check.root() - portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname)) - portageExec.wait() - sisyphus.database.syncLocal() + if sisyphus.check.root() == 0: + portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname)) + portageExec.wait() + sisyphus.database.syncLocal() + else: + sys.exit("\nYou need root permissions to do this, exiting!\n") |