From 3b4f9a7209238b62ef52757f63082ed5be1d3c78 Mon Sep 17 00:00:00 2001 From: Mike Lake <Mike.Lake@uts.edu.au> Date: Tue, 26 Oct 2021 15:12:30 +1100 Subject: [PATCH] Removed non public db reference. --- check_utilisation.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/check_utilisation.py b/check_utilisation.py index 52cd08c..cc232df 100755 --- a/check_utilisation.py +++ b/check_utilisation.py @@ -48,10 +48,9 @@ import smtplib pbs_server = 'hpcnode0' # Name of the users database. The "public" one has some fields removed. This is because -# we plan to make this script and database available to users under /usr/local/bin/. +# this script and the database is available to users under /usr/local/bin/. # Do not use the full path here. It needs to reside in the same directory as this script. -#users_db_name = 'users_ldap_public.db' -users_db_name = 'users_ldap.db' +users_db_name = 'users_ldap_public.db' # Target utilisation in percent. Anything below this will be tagged with "CHECK". target = 80 -- GitLab