Sha256: cbdcbe6ee2ee303d7f5c594bf0864854052d43eade2922cf2777d319a39a8f0d

Contents?: true

Size: 525 Bytes

Versions: 2

Compression:

Stored size: 525 Bytes

Contents

---
- name : SPLASH install infra (ruby)
  package:
    pkg: ruby
    state: present

- name : SPLASH install Splash (gem)
  gem:
    name: prometheus-splash
    state: present

- name: SPLASH Check if setup done
  stat:
    path: /etc/splash.yml
  register: stat_result

- name: SPLASH Installation
  shell: splash conf set
  when: not stat_result.stat.exists

- name: SPLASH Configuration
  template:
    src: splash.yml.j2
    dest: /etc/splash.yml
    owner: root
    group: root
    mode: 0644
  #notify: restart Splash

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
prometheus-splash-0.4.5 templates/ansible-splash/roles/splash/tasks/main.yml
prometheus-splash-0.4.4 templates/ansible-splash/roles/splash/tasks/main.yml