Skip to content
Snippets Groups Projects
Commit 14c3b11e authored by Ravi Tripathi's avatar Ravi Tripathi
Browse files

Merge branch 'fix-unicode-character' into 'master'

Remove u+200b

See merge request !1
parents 6917b714 1dad9cd3
No related branches found
No related tags found
1 merge request!1Remove u+200b
import rabbit_config as rcfg import rabbit_config as rcfg
Info_url = 'https://docs.uabgrid.uab.edu/wiki/Cheaha' Info_url = 'https://docs.uabgrid.uab.edu/wiki/Cheaha'
Loginwiki_url = 'http://docs.uabgrid.uab.edu/wiki/Cheaha_GettingStarted#Login' Loginwiki_url = 'http://docs.uabgrid.uab.edu/wiki/Cheaha_GettingStarted#Login'
Quickstart_url = 'https://docs.uabgrid.uab.edu/wiki/Cheaha_Quick_Start' Quickstart_url = 'https://docs.uabgrid.uab.edu/wiki/Cheaha_Quick_Start'
...@@ -9,29 +9,29 @@ Hpcannounce_email = 'HPC-ANNOUNCE@LISTSERV.UAB.EDU' ...@@ -9,29 +9,29 @@ Hpcannounce_email = 'HPC-ANNOUNCE@LISTSERV.UAB.EDU'
Hpcusers_email = 'HPC-USERS@LISTSERV.UAB.EDU' Hpcusers_email = 'HPC-USERS@LISTSERV.UAB.EDU'
Signature = 'UAB IT Research Computing' Signature = 'UAB IT Research Computing'
Helpdesk_url = 'https://uabprod.service-now.com/ess_portal/' # Once we get a real helpdesk, change to URL instead of email Helpdesk_url = 'https://uabprod.service-now.com/ess_portal/' # Once we get a real helpdesk, change to URL instead of email
Head = f"""From: {rcfg.Sender_alias} <{rcfg.Sender}> Head = f"""From: {rcfg.Sender_alias} <{rcfg.Sender}>
To: <{{{{ to }}}}> To: <{{{{ to }}}}>
Reply-to: {rcfg.Support_email} Reply-to: {rcfg.Support_email}
BCC: {rcfg.Admin_email} BCC: {rcfg.Admin_email}
Subject: {rcfg.Subject} Subject: {rcfg.Subject}
""" """
Body = f""" Body = f"""
Your account has been created on the Cheaha Super Computer Your account has been created on the Cheaha Super Computer
==================================== ====================================
User ID: {{{{ username }}}} User ID: {{{{ username }}}}
==================================== ====================================
Important: You are responsible for backing up your files on Cheaha! The following storage locations are available: Important: You are responsible for backing up your files on Cheaha! The following storage locations are available:
* $HOME - /home/$USER - 20G quota per user * $HOME - /home/$USER - 20G quota per user
* $USER_DATA - /data/user/$USER - 5TB quota per user * $USER_DATA - /data/user/$USER - 5TB quota per user
* $USER_SCRATCH - /data/scratch/$USER - 500TB shared amongst ALL users * $USER_SCRATCH - /data/scratch/$USER - 500TB shared amongst ALL users
DO NOT compute out of $HOME, all computation must be done on the fast storage that is $USER_DATA and $USER_SCRATCH DO NOT compute out of $HOME, all computation must be done on the fast storage that is $USER_DATA and $USER_SCRATCH
Please read the information available on our Wiki pages, especially the Cheaha Quick Start: Please read the information available on our Wiki pages, especially the Cheaha Quick Start:
Cheaha Quick Start Cheaha Quick Start
{Quickstart_url} {Quickstart_url}
Additional Cluster Login Instructions Additional Cluster Login Instructions
...@@ -40,11 +40,11 @@ Job Queuing information and examples ...@@ -40,11 +40,11 @@ Job Queuing information and examples
{Queuewiki_url} {Queuewiki_url}
General information about Cheaha General information about Cheaha
{Info_url} {Info_url}
If you encounter a problem or have any questions, please send a detailed email to: {Support_email} If you encounter a problem or have any questions, please send a detailed email to: {Support_email}
Open Office Hours: Open Office Hours:
Visual Brain Core, Mondays 10 AM to Noon: https://uasystem.zoom.us/j/526282301 Visual Brain Core, Mondays 10 AM to Noon: https://uasystem.zoom.us/j/526282301
RC Open Office Hours Wednesdays 1 to 3 PM: https://uab.zoom.us/j/97296139490 RC Open Office Hours Wednesdays 1 to 3 PM: https://uab.zoom.us/j/97296139490
RC Open Office Hours Thursdays 10 AM to Noon: https://uab.zoom.us/j/96229651103 RC Open Office Hours Thursdays 10 AM to Noon: https://uab.zoom.us/j/96229651103
...@@ -57,9 +57,9 @@ Regards, ...@@ -57,9 +57,9 @@ Regards,
{Signature} {Signature}
{Helpdesk_url} {Helpdesk_url}
""" """
Whole_mail = Head + Body Whole_mail = Head + Body
UserReportHead = f"""From: {rcfg.Sender_alias} <{rcfg.Sender}> UserReportHead = f"""From: {rcfg.Sender_alias} <{rcfg.Sender}>
To: <{rcfg.Admin_email}> To: <{rcfg.Admin_email}>
Subject: RC Account Creation Report: {{{{ fullname }}}}, {{{{ username }}}} """ Subject: RC Account Creation Report: {{{{ fullname }}}}, {{{{ username }}}} """
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment