blob: cf9d633ec0898d6e712629b3da31a6ee759f6c92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|