From fb5e03d66502482c3e6b4b04d92a46898403e98c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 17 Sep 2022 19:25:10 +0100 Subject: reorder imports alphabetically --- src/backend/uninstallAllForce.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/backend/uninstallAllForce.py (limited to 'src/backend/uninstallAllForce.py') diff --git a/src/backend/uninstallAllForce.py b/src/backend/uninstallAllForce.py new file mode 100644 index 0000000..8a952c6 --- /dev/null +++ b/src/backend/uninstallAllForce.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") -- cgit v1.2.3