blob: 32d2b6be95cf695d23b6e0c81c454b45fae59703 (
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
|
---
- include_vars: "{{ ansible_os_family }}.yml"
- name: install keystone packages
action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
with_items: packages | union(packages_noarch)
- name: generate keystone service list
shell: echo {{ item }} >> /opt/service
with_items: services | union(services_noarch)
- name: update keystone conf
template: src=keystone.conf dest=/etc/keystone/keystone.conf backup=yes
- name: delete sqlite database
shell: rm /var/lib/keystone/keystone.db || echo sqllite database already removed
- name: cron job to purge expired tokens hourly
shell: (crontab -l -u keystone 2>&1 | grep -q token_flush) || echo '@hourly /usr/bin/keystone-manage token_flush > /var/log/keystone/keystone-tokenflush.log 2>&1' >> {{ cron_path }}/keystone
- name: modify keystone cron rights
file: path={{ cron_path }}/keystone mode=0600
- name: keystone source files
template: src={{ item }} dest=/opt/{{ item }}
with_items:
- admin-openrc.sh
- demo-openrc.sh
- name: restart keystone services
service: name={{ item }} state=restarted enabled=yes
with_items: services | union(services_noarch)
|