Nova conf file added

This commit is contained in:
Joe Talerico 2015-11-06 16:21:55 -05:00
parent 0e5fb5b4de
commit ae7f465050
2 changed files with 9 additions and 5 deletions

View File

@ -2,11 +2,14 @@
- name: ensure nova.conf is properly configured
ini_file:
dest: /etc/nova/nova.conf
group: keystone
mode: 0640
section: "{{ item.section }}"
option: "{{ item.option }}"
value: "{{ item.value }}"
backup: yes
with_items:
- { section: DEFAULT, option: log_dir, value: /var/log/nova}
- { section: DEFAULT, option: verbose, value: "true" }
- { section: DEFAULT, option: debug, value: "true" }
#- { section: database, option: connection,
register: nova_ini
- { section: DEFAULT, option: verbose, value: True }
- { section: DEFAULT, option: debug, value: True }
register: nova_conf

View File

@ -2,3 +2,4 @@
remote_user: heat-admin
roles:
- common
- nova