summaryrefslogtreecommitdiffstats
path: root/src/linux
diff options
context:
space:
mode:
authorAlvaro Neira Ayuso <aneira@soleta.eu>2020-01-02 20:44:17 +0100
committerAlvaro Neira Ayuso <alvaroneay@gmail.com>2020-01-19 19:50:44 +0100
commit261a5edf7c26fcfada6ba1560febe316caf35e9f (patch)
tree1ada6a09144ec7f7853aa3c38301c464e990db54 /src/linux
parent6d1e79b8eb898d12fd5e2fa83489fc26f956bb8e (diff)
Add hardware command to inventory the machine hardware
ogAdmClient has a support to inventory the hardware in a machine. This new command allows the new ogClient to execute the same script to inventory the hw. No arguments needed for executing the command
Diffstat (limited to 'src/linux')
-rw-r--r--src/linux/ogOperations.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/linux/ogOperations.py b/src/linux/ogOperations.py
index c11ee30..85c8c0a 100644
--- a/src/linux/ogOperations.py
+++ b/src/linux/ogOperations.py
@@ -31,3 +31,7 @@ def procsession(disk, partition):
def procsoftware(disk, partition, path):
result = subprocess.check_output([OG_PATH + 'interfaceAdm/InventarioSoftware', disk, partition, path], shell=True)
return result.decode('utf-8')
+
+def prochardware(path):
+ result = subprocess.check_output([OG_PATH + 'interfaceAdm/InventarioHardware', path], shell=True)
+ return result.decode('utf-8')