From dab96403e953237d9dbb4e6b2b6aff257ec21201 Mon Sep 17 00:00:00 2001 From: Mike Lake <Mike.Lake@uts.edu.au> Date: Tue, 26 Oct 2021 12:49:52 +1100 Subject: [PATCH] Remove specific UTS strings. --- check_utilisation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/check_utilisation.py b/check_utilisation.py index bf06b18..1eaf442 100755 --- a/check_utilisation.py +++ b/check_utilisation.py @@ -64,10 +64,10 @@ past_days = 5 html_output = 'check_utilisation.html' # This line must be set to your email address. -from_email = 'Mike.Lake@uts.edu.au' +from_email = 'YourEmail@example.com' # Your login nodes mail server. -mail_server='postoffice.uts.edu.au' +mail_server='postoffice.example.com' prefix = ''' <p>Hi</p> @@ -340,7 +340,7 @@ def main(): parser = argparse.ArgumentParser(\ description='Check Your HPC Utilisation', \ usage="%(prog)s running|finished|all [-h] [-u USER] [-e EMAIL]", \ - epilog='Contact Mike.Lake@uts.edu.au for further help.', \ + epilog='Contact %s for further help.' % from_email, \ ) parser.add_argument('state', choices=['running','finished','all'], default='running', \ -- GitLab