diff options
Diffstat (limited to 'src/backend/uninstall.py')
-rw-r--r-- | src/backend/uninstall.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py index d219b47..be1a1e3 100644 --- a/src/backend/uninstall.py +++ b/src/backend/uninstall.py @@ -8,6 +8,7 @@ import sisyphus.checkenv import sisyphus.killemerge import sisyphus.syncdb + def start(pkgname): if sisyphus.checkenv.root(): portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname)) @@ -16,6 +17,7 @@ def start(pkgname): else: sys.exit("\nYou need root permissions to do this, exiting!\n") + def fstart(pkgname): if sisyphus.checkenv.root(): portageExec = subprocess.Popen(['emerge', '--quiet', '--unmerge', '--ask'] + list(pkgname)) @@ -24,6 +26,7 @@ def fstart(pkgname): else: sys.exit("\nYou need root permissions to do this, exiting!\n") + def startx(pkgname): portageExec = subprocess.Popen(['emerge', '--depclean'] + pkgname, stdout=subprocess.PIPE, stderr=subprocess.PIPE) # kill portage if the program dies or it's terminated by the user |