Update to 2022-10-27 14:00

This commit is contained in:
Daniel Berteaud
2022-10-27 14:00:08 +02:00
parent c5d3ee9d98
commit b851bc1a33
5 changed files with 14 additions and 4 deletions

View File

@@ -147,3 +147,9 @@
- name: Install a script to set nomad bridge in promisc mode
copy: src=50-nomad-promisc dest=/etc/NetworkManager/dispatcher.d/50-nomad-promisc mode=755
tags: nomad
- name: Create host_volume directories
file: path={{ item.path }} state=directory owner={{ item.owner | default(omit) }} group={{ item.group | default(omit) }} mode={{ item.mode | default(omit) }}
loop: "{{ nomad_conf.client.host_volumes | default([]) }}"
when: item.create | default(False)
tags: nomad