diff options
Diffstat (limited to 'keystone-moon/debian/keystone.init.in')
-rwxr-xr-x | keystone-moon/debian/keystone.init.in | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/keystone-moon/debian/keystone.init.in b/keystone-moon/debian/keystone.init.in new file mode 100755 index 00000000..cf9d633e --- /dev/null +++ b/keystone-moon/debian/keystone.init.in @@ -0,0 +1,19 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: keystone +# Required-Start: $network $local_fs $remote_fs +# Required-Stop: $remote_fs +# Should-Start: mysql postgresql slapd rabbitmq-server ntp +# Should-Stop: mysql postgresql slapd rabbitmq-server ntp +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: OpenStack cloud identity service +# Description: This is the identity service used by OpenStack for +# authentication (authN) and high-level authorization (authZ). +### END INIT INFO + +DESC="OpenStack Identity service" +PROJECT_NAME=keystone +NAME=keystone +DAEMON=/usr/bin/keystone-all + |