Skip to content

Commit

Permalink
fix(libmapstack): allow mapping by booleans and numbers
Browse files Browse the repository at this point in the history
* Automated using myii/ssf-formula#418
  • Loading branch information
stasjok authored and myii committed Feb 21, 2022
1 parent 4bd759c commit 40ba5a7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion openssh/libmapstack.jinja
Expand Up @@ -181,7 +181,7 @@
{#- Load YAML file matching the grain/pillar/... #}
{#- Fallback to use the source name as a direct filename #}

{%- if matcher.value | length == 0 %}
{%- if matcher.value is sequence and matcher.value | length == 0 %}
{#- Mangle `matcher.value` to use it as literal path #}
{%- set query_parts = matcher.query.split("/") %}
{%- set yaml_dirname = query_parts[0:-1] | join("/") %}
Expand All @@ -194,6 +194,11 @@
{#- Some configuration return list #}
{%- if yaml_names is string %}
{%- set yaml_names = [yaml_names] %}
{%- elif yaml_names is sequence %}
{#- Convert to strings if it's a sequence of numbers #}
{%- set yaml_names = yaml_names | map("string") | list %}
{%- else %}
{%- set yaml_names = [yaml_names | string] %}
{%- endif %}

{#- Try to load a `.yaml.jinja` file for each `.yaml` file #}
Expand Down
8 changes: 4 additions & 4 deletions openssh/libmatchers.jinja
Expand Up @@ -12,11 +12,11 @@
} %}

{#- When no part before `@` is provided: #}
{#- - define a filename path, noted `F` #}
{#- - define a YAML file path, noted `Y` #}
{#- - use `salt["config.get"]`, noted `C` #}
{#- - use colon `:` delimiter for querying #}
{%- set _defaults = {
"type": "F",
"type": "Y",
"query_type": "C",
"query_delimiter": ":"
} %}
Expand All @@ -28,11 +28,11 @@
) %}
{#- matcher format is `[<TYPE>[:<OPTION>[:DELIMITER]]@]<KEY>` #}
{#- each matcher has a type: #}
{#- - `F` to build a file name (the default when no type is set) #}
{#- - `Y` to build a YAML file name (the default when no type is set) #}
{#- - `C` to lookup values with `config.get` #}
{#- - `G` to lookup values with `grains.get` #}
{#- - `I` to lookup values with `pillar.get` #}
{#- The `FILE` type option can define query type to build the file name: #}
{#- The `YAML` type option can define query type to build the file name: #}
{#- - `C` for query with `config.get` (the default when to query type is set) #}
{#- - `G` for query with `grains.get` #}
{#- - `I` for query with `pillar.get` #}
Expand Down
4 changes: 2 additions & 2 deletions openssh/libsaltcli.jinja
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# vim: ft=jinja
{#- -*- coding: utf-8 -*- #}
{#- vim: ft=jinja #}

{#- Get the relevant values from the `opts` dict #}
{%- set opts_cli = opts.get('__cli', '') %}
Expand Down

0 comments on commit 40ba5a7

Please sign in to comment.