With Flock around the corner, we need some email addresses for people to
reach the organizer team or for setting a reply-to alias for the new CFP
system we are introducing this year. All Flock aliases were disabled per
request of @mattdm in #10411 because of spam. It seems `flockinfo@` is
the problematic mail alias, so I took a conservative approach by only
enabling the `flock-staff@` and `flock-coc@` addresses.
I also added @shaunm to both aliases because he is also a part of the
core staff team for this year's Flock.
Signed-off-by: Justin W. Flory (he/him) <jwf@redhat.com>
We need this to try and relay in emails.
It turns out to be bordering on impossible to do this sanely with our
current setup, so make a fedora vm that lets us use saslauthdb to have a
specific (small) list of users that can authenticate and relay emails
via bastion and out. We can't do this on rhel, because they don't build
the saslauthdb backend. We can't use any of the other backends because
they either don't work or would allow any fedora user to relay, which we
do not want.
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
See https://github.com/praiskup/resalloc-aws/pull/5
I was getting the following error:
An error occurred (SpotMaxPriceTooLow) when calling the RunInstances
operation: Your Spot request price of 0.102 is lower than the minimum
required Spot request fulfillment price of 0.1371.
So I am setting the price limit to the same value as for x86_64 builders.
el7 hosts don't have python3 installed normally, so this fact fails. ;(
"failed_modules": {"python3_fact": {"failed": true, "module_stderr": "/usr/bin/env: python3: No such file or directory\n",
So, lets just disable for now until we can fix it.
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
Currently the latest odcs version is broken, so we don't want to
upgrade to it everytime we run the playbook. Just make sure it's
installed.
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit adds Shaun McCance (@shaunm), CentOS Community Architect, to
the sponsors@fedoraproject.org email alias used for coordinating event
sponsorships. We are folding a CentOS Connect event into Flock, and so,
joining up to co-organize Flock this year.
Signed-off-by: Justin W. Flory (he/him) <jwf@redhat.com>
Resolve the following yamllint warnings and error:
124:101 warning line too long (109 > 100 characters) (line-length)
155:101 warning line too long (140 > 100 characters) (line-length)
178:2 warning missing starting space in comment (comments)
196:2 warning missing starting space in comment (comments)
304:6 warning missing starting space in comment (comments)
549:2 warning missing starting space in comment (comments)
627:1 error trailing spaces (trailing-spaces)
Signed-off-by: Todd Zullinger <tmz@pobox.com>
Implement the TODO item from b64d7567f6 (Mailman: don't report useless
exceptions in Django via email, 2016-09-28).
This also removes two yamllint line-length warnings:
17:101 warning line too long (108 > 100 characters) (line-length)
47:101 warning line too long (113 > 100 characters) (line-length)
The changes were performed via:
sed -i 's/^ command: semanage fcontext -a -t \([^ ]\+\) \(".*"\)$/ sefcontext:\n target: \2\n setype: \1\n state: present/' roles/mailman/tasks/main.yml
Signed-off-by: Todd Zullinger <tmz@pobox.com>