Parcourir la source

Merge pull request #65 from PlayFab/master

Test if individual gitfs remote is string
tags/v0.57.0
Forrest il y a 10 ans
Parent
révision
64a63eda93
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +1
    -1
      pillar.example
  2. +1
    -1
      salt/files/master.d/_defaults.conf

+ 1
- 1
pillar.example Voir le fichier

@@ -4,7 +4,7 @@ salt:
- git
- roots
gitfs_remotes:
- git://github.com/saltstack-formulas/salt-formula.git
- git://github.com/saltstack-formulas/salt-formula.git:
- base: develop
file_roots:
base:

+ 1
- 1
salt/files/master.d/_defaults.conf Voir le fichier

@@ -486,7 +486,7 @@ fileserver_backend:
{% if 'gitfs_remotes' in master -%}
gitfs_remotes:
{%- for remote in master['gitfs_remotes'] %}
{% if remote is iterable %}
{% if remote is iterable and remote is not string %}
{%- for repo, children in remote.iteritems() -%}
- {{ repo }}:
{%- for child in children %}

Chargement…
Annuler
Enregistrer