Explorar el Código

Add Bind Mount Option

Add Bind Mount Option
pull/221/head
preussal hace 3 años
padre
commit
420f020759
Se han modificado 2 ficheros con 20 adiciones y 1 borrados
  1. +19
    -0
      README.rst
  2. +1
    -1
      linux/storage/mount.sls

+ 19
- 0
README.rst Ver fichero

@@ -2068,6 +2068,25 @@ NFS mount:
file_system: nfs
opts: rw,sync

Bind mount:

.. code-block:: yaml

linux:
storage:
enabled: true
mount:
mount_bind:
enabled: true
path: /mnt/bind/name
device: /mnt/source/bind
file_system: none
opts: bind,defaults
dump: 0
pass_num: 1



File swap configuration:

.. code-block:: yaml

+ 1
- 1
linux/storage/mount.sls Ver fichero

@@ -5,7 +5,7 @@

{%- if mount.enabled %}

{%- if not mount.file_system in ['nfs', 'nfs4', 'cifs', 'tmpfs'] %}
{%- if not mount.file_system in ['nfs', 'nfs4', 'cifs', 'tmpfs', 'none'] %}

mkfs_{{ mount.device}}:
cmd.run:

Cargando…
Cancelar
Guardar