Fix keystone config templates

The ansible_managed variable was resulting in
text being put into the keystone config file that
caused keystone to fail. Commenting out the entry
to allow the test script to execute successfuly.

Change-Id: Ie8ff1f9b8354e4d1411a8714df6a73b6adfd9cd5
This commit is contained in:
Julia Kreger 2016-12-05 17:39:29 +00:00
parent 86ac35f073
commit 487de043ea
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
{{ ansible_managed }}
# {{ ansible_managed }}
[uwsgi]
master = true
processes = 2

View File

@ -1,4 +1,4 @@
{{ ansible_managed }}
# {{ ansible_managed }}
[uwsgi]
master = true
processes = 2

View File

@ -1,4 +1,4 @@
{{ ansible_managed }}
# {{ ansible_managed }}
[DEFAULT]
debug = {{ keystone.debug | bool }}

View File

@ -1,4 +1,4 @@
{{ ansible_managed }}
# {{ ansible_managed }}
user {{ nginx_user }};
worker_processes 2;
pid /run/nginx.pid;

View File

@ -1,4 +1,4 @@
{{ ansible_managed }}
# {{ ansible_managed }}
server {
listen 5000;
access_log /var/log/nginx/keystone/access.log;