Sha256: 47620160756097e4175251d9b45dc8c2f99b80b6a656d69380015d3df698bca0

Contents?: true

Size: 546 Bytes

Versions: 1

Compression:

Stored size: 546 Bytes

Contents

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

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

- 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

1 entries across 1 versions & 1 rubygems

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