puppet-openstacklib/templates/policy-rc.d.erb
Matthew Black 45f8a57770 Added policy-rc.d class.
On debian os family systems the methodology is to
start services when installed. This causes a problem
with keystone sometimes at random in CI jobs.

Change-Id: Id0b38743a9bf536f69d155e1d6e664a5585e5e1d
2016-04-22 10:41:36 -04:00

9 lines
108 B
Plaintext

#!/bin/bash
<% @services.each do |service| %>
if [ "$1" == "<%= service %>" ]
then
exit 101
fi
<% end %>