abbd8a61a8
Change-Id: I15595d80ee7fad04d964aaa83a403d9303f6aa55
10 lines
458 B
Bash
Executable File
10 lines
458 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
|
|
os-svc-install -n keystone -u keystone -r https://github.com/openstack/keystone.git
|
|
os-svc-daemon keystone keystone /usr/local/bin/keystone-all "--config-dir /etc/keystone --log-config /etc/keystone/logging.conf"
|
|
install -m 0755 -o keystone -g keystone -d /etc/keystone/ssl
|
|
|
|
install -m 0755 -o root -g root $(dirname $0)/../post-configure \
|
|
$(os-refresh-config --print-base)/post-configure.d/70-keystone
|