From d3744f1851843f3573c42bead44495016acec6a9 Mon Sep 17 00:00:00 2001 From: Mikhail Grebenkin Date: Sat, 11 Aug 2018 23:16:44 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BF=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=BA?= =?UTF-8?q?=D0=B0=20=D1=81=D1=83=D1=89=D0=B5=D1=81=D1=82=D0=B2=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D1=8F=20=D1=84=D0=B0=D0=B9=D0=BB=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/vcs.xml | 6 ++++++ megacli_parser/megacli_parse.py | 14 ++++++++++---- 2 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 .idea/vcs.xml diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/megacli_parser/megacli_parse.py b/megacli_parser/megacli_parse.py index 37bce19..018e1be 100644 --- a/megacli_parser/megacli_parse.py +++ b/megacli_parser/megacli_parse.py @@ -148,12 +148,18 @@ def f_get_ld_val(num, val, source): if __name__ == '__main__': if len(sys.argv) == 1 or len(sys.argv) == 3 or len(sys.argv) > 4: print("Wrong args. Cache will be updated if necessary") - stat_pd = os.stat(pd_file) - stat_ld = os.stat(ld_file) - if (float(time.time()) - float(stat_pd.st_ctime)) > 50: + if not os.path.exists(pd_file): f_read_cli(pd_cmd, pd_file) - if (float(time.time()) - float(stat_ld.st_ctime)) > 50: + else: + stat_pd = os.stat(pd_file) + if (float(time.time()) - float(stat_pd.st_ctime)) > 50: + f_read_cli(pd_cmd, pd_file) + if not os.path.exists(ld_file): f_read_cli(ld_cmd, ld_file) + else: + stat_ld = os.stat(ld_file) + if (float(time.time()) - float(stat_ld.st_ctime)) > 50: + f_read_cli(ld_cmd, ld_file) if len(sys.argv) == 2: if sys.argv[1] == "ld":