summaryrefslogtreecommitdiff
path: root/src/backend/uninstallAllForce.py
blob: 1c37ace7afa8f687727eaa76fb10b9513c42f913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)
        portageExec.wait()
        sisyphus.syncDatabase.syncLocal()
    else:
        sys.exit("\nYou need root permissions to do this, exiting!\n")