"openstack-proxy/variables.pkr.hcl" did not exist on "eeba066a80483ea54c4274d66757a171b37bced1"
Newer
Older
Exchange = 'RegUsr'
User = 'reggie'
Password = 'CHANGE_IT_TO_YOUR_OWN_PASSWORD'
VHost = '/'
# time delay to let account creation finish
# to avoid concurrency with downstream agents
Delay = 5
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# git_commit agent config
rc_users_ldap_repo_loc = "~/git/rc-users"
# Config related to email
Server = 'localhost'
My_email = 'root@localhost'
Sender = 'ROOT@LOCALHOST'
Sender_alias = 'Services'
Subject = 'New User Account'
Info_url = 'https://www.google.com'
Mail_list = 'root@localhost'
Mail_list_bcc = 'cmsupport@localhost'
Head = f"""From: {Sender_alias} <{Sender}>
To: <{{{{ to }}}}>
Subject: {Subject}
"""
Body = f"""
Hi {{{{ username }}}}
Your account has been set up with:
============================
User ID: {{{{ username }}}}
============================
If you have any questions, please visit:
{Info_url}
or email at {My_email}
Cheers,
"""
Whole_mail = Head + Body