Merge pull request #30 from simonpasquier/support-tmpfs-mount

Support tmpfs mount
diff --git a/README.rst b/README.rst
index 67b17c9..8b156cb 100644
--- a/README.rst
+++ b/README.rst
@@ -558,6 +558,7 @@
         enabled: true
         mount:
           samba1:
+          - enabled: true
           - path: /media/myuser/public/
           - device: //192.168.0.1/storage
           - file_system: cifs
@@ -599,6 +600,7 @@
         storage:
           mount:
             data:
+              enabled: true
               device: /dev/vg1/data
               file_system: ext4
               path: /mnt/data
diff --git a/linux/storage/mount.sls b/linux/storage/mount.sls
index 2a855ed..e4c2166 100644
--- a/linux/storage/mount.sls
+++ b/linux/storage/mount.sls
@@ -5,7 +5,7 @@
 
 {%- if mount.enabled %}
 
-{%- if not mount.file_system in ['nfs', 'nfs4', 'cifs'] %}
+{%- if not mount.file_system in ['nfs', 'nfs4', 'cifs', 'tmpfs'] %}
 
 mkfs_{{ mount.device}}:
   cmd.run:
@@ -50,4 +50,4 @@
 
 {%- endfor %}
 
-{%- endif %}
\ No newline at end of file
+{%- endif %}