summaryrefslogtreecommitdiff
path: root/src/op_mode/show_ram.py
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2022-02-21 08:06:40 -0500
committerDaniil Baturin <daniil@vyos.io>2022-02-21 10:32:07 -0500
commita3b7e985911eeaccac4fa229563b78c5a64e7e90 (patch)
treed61bd035889fe8b24c2c4f62316bc54b285821a5 /src/op_mode/show_ram.py
parent529af7898d062b42ac33e15bfdc62c14184e098f (diff)
downloadvyos-1x-a3b7e985911eeaccac4fa229563b78c5a64e7e90.tar.gz
vyos-1x-a3b7e985911eeaccac4fa229563b78c5a64e7e90.zip
T2719: initial batch of standardized structure op mode scripts
Diffstat (limited to 'src/op_mode/show_ram.py')
-rwxr-xr-xsrc/op_mode/show_ram.py19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/op_mode/show_ram.py b/src/op_mode/show_ram.py
index 5818ec132..2b0be3965 100755
--- a/src/op_mode/show_ram.py
+++ b/src/op_mode/show_ram.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
-# Copyright (C) 2021 VyOS maintainers and contributors
+# Copyright (C) 2022 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
@@ -55,10 +55,17 @@ def get_system_memory_human():
return mem
-if __name__ == '__main__':
- mem = get_system_memory_human()
+def get_raw_data():
+ return get_system_memory_human()
+
+def get_formatted_output():
+ mem = get_raw_data()
- print("Total: {}".format(mem["total"]))
- print("Free: {}".format(mem["free"]))
- print("Used: {}".format(mem["used"]))
+ out = "Total: {}\n".format(mem["total"])
+ out += "Free: {}\n".format(mem["free"])
+ out += "Used: {}".format(mem["used"])
+ return out
+
+if __name__ == '__main__':
+ print(get_formatted_output())