common/templates/tmpfs

17 lines
374 B
Plaintext

mount {
type = "tmpfs"
[[- if test.IsKind "string" . ]]
target = "[[ . ]]"
tmpfs_options {
size = 3000000
}
[[- else if test.IsKind "map" . ]]
target = "[[ .target ]]"
[[- if has . "size" ]]
tmpfs_options {
size = [[ .size ]]
}
[[- end ]]
[[- end ]]
}