63dac37550
Change I37337b9d07ace4 disabled the use of jeepyb's trivial rebase script however the puppet for it still exists. There's really no need to keep the option around in the puppet manifest so this change just removes it. Change-Id: I101e385823a110a74b3060ad11e3e528d5048d9f
12 lines
601 B
Plaintext
Executable File
12 lines
601 B
Plaintext
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 @ssh_welcome_rsa_key_contents != "" -%>
|
|
timeout -k 2m 10m /usr/local/bin/welcome-message patchset-created \
|
|
--verbose --ssh-user=welcome-message \
|
|
--ssh-key=/home/gerrit2/review_site/etc/ssh_welcome_rsa_key "$@"
|
|
<% end -%>
|