summaryrefslogtreecommitdiffstats
path: root/abs/core/func/pacman.py
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2011-12-07 19:26:35 (GMT)
committerJames Meyer <james.meyer@operamail.com>2011-12-07 19:26:35 (GMT)
commit8f9766814d4ac032887c160cd98528c531a97067 (patch)
tree94a7e722f5ca7f1ebd7f3f374f94e9c7e434cea3 /abs/core/func/pacman.py
parent46710e350b11efbb36ab455d07f8248bfec2d620 (diff)
downloadlinhes_pkgbuild-8f9766814d4ac032887c160cd98528c531a97067.zip
linhes_pkgbuild-8f9766814d4ac032887c160cd98528c531a97067.tar.gz
linhes_pkgbuild-8f9766814d4ac032887c160cd98528c531a97067.tar.bz2
func: first build
Used by the backend to issue commands on any given system of the cluster.
Diffstat (limited to 'abs/core/func/pacman.py')
-rw-r--r--abs/core/func/pacman.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/abs/core/func/pacman.py b/abs/core/func/pacman.py
new file mode 100644
index 0000000..c8f2e13
--- /dev/null
+++ b/abs/core/func/pacman.py
@@ -0,0 +1,36 @@
+#!/usr/bin/python
+
+
+# other modules
+import sub_process
+
+# our modules
+import func_module
+
+# =================================
+
+class pacman(func_module.FuncModule):
+ version = "0.0.1"
+ api_version = "0.0.1"
+ description = "update the server"
+
+
+ def update_system(self,flags):
+ flags.replace(";","") # prevent stupidity
+ cmd = sub_process.Popen("/usr/bin/update_system %s" % flags,stdout=sub_process.PIPE,shell=True)
+ data = cmd.communicate()[0]
+ results = []
+ for x in data.split("\n"):
+ results.append(x)
+ return (cmd.returncode, results)
+
+ def pkgversion(self,flags):
+ flags.replace(";","") # prevent stupidity
+ cmd = sub_process.Popen("/usr/bin/pacman -Q %s | grep -v error" % flags,stdout=sub_process.PIPE,shell=True)
+ data = cmd.communicate()[0]
+ results = []
+ for x in data.split("\n"):
+ results.append(x)
+ return (cmd.returncode, results)
+
+