prometheus-formula/prometheus/archive/alternatives/install.sls

82 lines
2.9 KiB
Plaintext
Raw Normal View History

# -*- coding: utf-8 -*-
# vim: ft=sls
{#- Get the `tplroot` from `tpldir` #}
{%- set tplroot = tpldir.split('/')[0] %}
{%- from tplroot ~ "/map.jinja" import prometheus as p with context %}
{%- set sls_archive_install = tplroot ~ '.archive' %}
2019-06-19 01:23:45 +02:00
{%- if grains.kernel|lower in ('linux',) and p.linux.altpriority|int > 0 %}
include:
- {{ sls_archive_install }}
2019-06-20 02:36:58 +02:00
{%- for name in p.wanted %}
{%- set bundle = name + '-%s.%s-%s'|format(p.pkg[name]['archive_version'], p.kernel, p.arch) %}
{%- if grains.os_family == 'Suse' %}
2019-06-20 02:36:58 +02:00
prometheus-archive-alternatives-install-{{ name }}-home-cmd-run:
cmd.run:
- name: |
update-alternatives --install {{ p.dir.basedir }}/{{ name }} \
prometheus-{{ name }}-home {{ p.dir.basedir }}/{{ bundle }} \
{{ p.linux.altpriority }}
- watch:
2019-06-20 02:36:58 +02:00
- archive: prometheus-archive-install-{{ name }}-archive-extracted
2019-06-19 01:23:45 +02:00
{%- else %}
2019-06-20 02:36:58 +02:00
prometheus-archive-alternatives-install-{{ name }}-home-alternatives-install:
alternatives.install:
2019-06-20 02:36:58 +02:00
- name: prometheus-{{ name }}-home
- link: {{ p.dir.basedir }}/{{ name }}
- path: {{ p.dir.basedir }}/{{ bundle }}
- priority: {{ p.linux.altpriority }}
- order: 10
- watch:
2019-06-20 02:36:58 +02:00
- archive: prometheus-archive-install-{{ name }}-archive-extracted
2019-06-20 02:36:58 +02:00
prometheus-archive-alternatives-install-{{ name }}-home-alternatives-set:
alternatives.set:
2019-06-20 02:36:58 +02:00
- name: prometheus-{{ name }}-home
- path: {{ p.dir.basedir }}/{{ bundle }}
- require:
2019-06-20 02:36:58 +02:00
- alternatives: prometheus-archive-alternatives-install-{{ name }}-home-alternatives-install
{%- endif %}
{% for b in p.pkg[name]['binaries'] %}
{%- if grains.os_family == 'Suse' %}
2019-06-19 01:23:45 +02:00
prometheus-archive-alternatives-install-{{ name }}-cmd-run-{{ b }}-alternative:
cmd.run:
- name: |
update-alternatives --install /usr/local/bin/{{ b }} \
prometheus-{{ name }}-{{ b }} {{ p.dir.basedir }}/{{ bundle }}/{{ b }} \
{{ p.linux.altpriority }}
- require:
2019-06-20 02:36:58 +02:00
- cmd: prometheus-archive-alternatives-install-{{ name }}-home-cmd-run
{%- else %}
prometheus-archive-alternatives-install-{{ name }}-alternatives-install-{{ b }}:
alternatives.install:
2019-06-20 02:36:58 +02:00
- name: prometheus-{{ name }}-{{ b }}
- link: /usr/local/bin/{{ b }}
- path: {{ p.dir.basedir }}/{{ bundle }}/{{ b }}
- priority: {{ p.linux.altpriority }}
- order: 10
- require:
2019-06-20 02:36:58 +02:00
- alternatives: prometheus-archive-alternatives-install-{{ name }}-home-alternatives-install
2019-06-20 02:36:58 +02:00
prometheus-archive-alternatives-install-{{ name }}-alternatives-set-{{ b }}:
alternatives.set:
2019-06-20 02:36:58 +02:00
- name: prometheus-{{ name }}-{{ b }}
- path: {{ p.dir.basedir }}/{{ bundle }}/{{ b }}
- require:
2019-06-20 02:36:58 +02:00
- alternatives: prometheus-archive-alternatives-install-{{ name }}-alternatives-install-{{ b }}
2019-06-19 01:23:45 +02:00
{%- endif %}
2019-06-20 02:36:58 +02:00
{% endfor %}
{% endfor %}
2019-06-19 01:23:45 +02:00
{%- endif %}