4f9720e76e
This runs gerrit in a container on review-dev01 using podman. Remove an unused web_server.py file that we found from copying it from puppet to ansible. Change-Id: I399d3cf8471bc8063022b0db0ff81718b2ee2941
12 lines
601 B
Django/Jinja
Executable File
12 lines
601 B
Django/Jinja
Executable File
#!/bin/sh
|
|
|
|
# Use timeout to kill any process running longer than 10 minutes.
|
|
timeout -k 2m 10m /usr/local/bin/update-blueprint patchset-created "$@"
|
|
timeout -k 2m 10m /usr/local/bin/update-bug patchset-created "$@"
|
|
timeout -k 2m 10m /usr/local/bin/notify-impact patchset-created "$@" --impact SecurityImpact --dest-address 'openstack-security@lists.openstack.org'
|
|
{% if welcome_message_gerrit_ssh_private_key is defined %}
|
|
timeout -k 2m 10m /usr/local/bin/welcome-message patchset-created \
|
|
--verbose --ssh-user=welcome-message \
|
|
--ssh-key=/var/gerrit/etc/ssh_welcome_rsa_key "$@"
|
|
{% endif %}
|