Saltstack Official Linux Formula
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- {%- from "linux/map.jinja" import storage with context %}
- {%- if storage.enabled and storage.multipath.enabled %}
-
- linux_storage_multipath_packages:
- pkg.installed:
- - pkgs: {{ storage.multipath.pkgs | json }}
-
- linux_storage_multipath_config:
- file.managed:
- - name: /etc/multipath.conf
- - source: salt://linux/files/multipath.conf
- - template: jinja
- - require:
- - pkg: linux_storage_multipath_packages
-
- linux_storage_multipath_service:
- service.running:
- - enable: true
- - name: {{ storage.multipath.service }}
- - watch:
- - file: linux_storage_multipath_config
- - sig: multipathd
-
- {%- endif %}
|