diff options
author | John Estabrook <jestabro@vyos.io> | 2022-02-21 14:03:22 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-21 14:03:22 -0600 |
commit | d59fac9148ccbe677716baebac813c45b84de712 (patch) | |
tree | 5fd228cf341163e689692d26effa0885090d86fb /src/op_mode/show_ram.py | |
parent | 36a8c636d6d91550237bfa19b12de949319bc692 (diff) | |
parent | a3b7e985911eeaccac4fa229563b78c5a64e7e90 (diff) | |
download | vyos-1x-d59fac9148ccbe677716baebac813c45b84de712.tar.gz vyos-1x-d59fac9148ccbe677716baebac813c45b84de712.zip |
Merge pull request #1233 from dmbaturin/structured-op-mode
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()) |