18 lines
454 B
Plaintext
18 lines
454 B
Plaintext
# -*- coding: utf-8 -*-
|
|
# vim: ft=sls
|
|
|
|
{#- Get the `tplroot` from `tpldir` #}
|
|
{%- set tplroot = tpldir.split('/')[0] %}
|
|
{%- set sls_config_file = tplroot ~ '.config.file' %}
|
|
{%- from tplroot ~ "/map.jinja" import mapdata as TEMPLATE with context %}
|
|
|
|
include:
|
|
- {{ sls_config_file }}
|
|
|
|
TEMPLATE-service-running-service-running:
|
|
service.running:
|
|
- name: {{ TEMPLATE.service.name }}
|
|
- enable: True
|
|
- watch:
|
|
- sls: {{ sls_config_file }}
|