fix for loop for config values
This commit is contained in:
parent
c3ea2c6414
commit
fdcc937124
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ Description=VoxeLibre Server
|
|||
Image={{ salt['pillar.get']('voxelibre:image:path', 'codeberg.org/elouin/voxelibre') }}:{{ salt['pillar.get']('voxelibre:image:version', '0.87.2-1') }}
|
||||
Volume=voxelibre.volume:/var/lib/minetest/.minetest/worlds
|
||||
PublishPort={{ salt['pillar.get']('voxelibre:port', "30000") }}:30000/udp
|
||||
{% for option, value in pillar.get('voxelibre:config', {}).items() %}
|
||||
{% for option, value in salt['pillar.get']('voxelibre:config').items() %}
|
||||
Environment={{ option }}={{ value }}
|
||||
{% endfor %}
|
||||
|
||||
|
|
Loading…
Reference in a new issue