summaryrefslogtreecommitdiff
path: root/openstack/usr/share/openstack/nova-config.yml
blob: 4f43db3978ea04cf93f03eb8ce2b5030e992bba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
- hosts: localhost
  vars_files:
  - "/etc/openstack/nova.conf"
  tasks:
  - name: Create the nova user.
    user:
        name: nova
        comment: Openstack Nova Daemons
        shell: /sbin/nologin
        home: /var/lib/nova
        groups: libvirt
        append: yes

  - name: Create the /var folders for nova
    file:
        path: "{{ item }}"
        state: directory
        owner: nova
        group: nova
    with_items:
    - /var/run/nova
    - /var/lock/nova
    - /var/log/nova
    - /var/lib/nova
    - /var/lib/nova/instances

  - file: path=/etc/nova state=directory
  - name: Add the configuration needed for nova in /etc/nova using templates
    template:
        src: /usr/share/openstack/nova/{{ item }}
        dest: /etc/nova/{{ item }}
    with_lines:
    - cd /usr/share/openstack/nova && find -type f