barbican/etc/init/barbican-keystone-listener.conf
Arun Kant 758904848f Adding keystone notification listener support
Notification listener processes only keystone project delete events.
It uses keystone project id to identify if related barbican resources are there
and deletes that project related barbican resources.

10/07/2014: Keep resolving rebase conflicts as this change is pending for a while.
Modified listener transaction logic as per related recent change in barbican.
Fixed missing patcher stop in few places which was causing failure in new tests.

Implements: blueprint consume-keystone-events

Change-Id: Iba7d50eb222edd43352ef82f629df2b3187c76ec
2014-10-07 16:09:09 -07:00

11 lines
332 B
Plaintext

# Barbican Keystone Listener upstart script
# Used in rpm build. Keep in sync with debian/barbican-keystone-listener.upstart
description "Barbican Keystone Event Listeners"
start on runlevel [2345]
stop on runlevel [06]
script
barbican-keystone-listener.py >> /var/log/barbican/barbican_keystone_listener.log 2>&1
end script