Bladeren bron

Add Bind Mount Option

Add Bind Mount Option
pull/221/head
preussal 3 jaren geleden
bovenliggende
commit
420f020759
2 gewijzigde bestanden met toevoegingen van 20 en 1 verwijderingen
  1. +19
    -0
      README.rst
  2. +1
    -1
      linux/storage/mount.sls

+ 19
- 0
README.rst Bestand weergeven

@@ -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 Bestand weergeven

@@ -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:

Laden…
Annuleren
Opslaan