diff options
author | Daniil Baturin <daniil@vyos.io> | 2022-02-21 08:06:40 -0500 |
---|---|---|
committer | Daniil Baturin <daniil@vyos.io> | 2022-02-21 10:32:07 -0500 |
commit | a3b7e985911eeaccac4fa229563b78c5a64e7e90 (patch) | |
tree | d61bd035889fe8b24c2c4f62316bc54b285821a5 /src/op_mode/show_ram.py | |
parent | 529af7898d062b42ac33e15bfdc62c14184e098f (diff) | |
download | vyos-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-x | src/op_mode/show_ram.py | 19 |
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()) |