d9ac23c6d6
The mode should reflect the mount directory, and 755 is the default - so drop the mount option. Cc: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Norbert Lange <nolange79@gmail.com> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
16 lines
311 B
SYSTEMD
16 lines
311 B
SYSTEMD
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
# Modelled after systemd's tmp.mount
|
|
|
|
[Unit]
|
|
Description=Buildroot /var tmpfs
|
|
DefaultDependencies=no
|
|
Conflicts=umount.target
|
|
Before=local-fs.target umount.target
|
|
After=swap.target
|
|
|
|
[Mount]
|
|
What=tmpfs
|
|
Where=/var
|
|
Type=tmpfs
|
|
Options=nosuid,nodev,size=50%%,nr_inodes=1m
|