<div dir="ltr">Hello,<div><br></div><div>Is there any way to turn off the automatic directory (directories) creation during mount unit start/run? To make the [auto-generated] mount unit behave the same as the mount command - to end with an error?<br></div><div><br></div><div>- from the systemd.mount man page:</div><div><br></div><div>What=<br>Takes an absolute path of a device node, file or other resource to mount. See mount(8) for details. If this refers to a device node, a dependency on the respective device unit is automatically created. (See systemd.device(5) for more information.)<br>This option is mandatory.<br><br>Where=<br>Takes an absolute path of a directory of the mount point. If the mount point does not exist at the time of mounting, it is created. This string must be reflected in the unit filename. (See above.) This option is mandatory.<br></div><div><br></div><div>- example:</div><div> - fstab:</div><div>/mnt/x    /mnt/y    none    bind    0 0<br></div><div><br></div><div>  - commands:</div><div># systemctl daemon-reload<br></div><div># systemctl --version<br>systemd 250 (v250.8-1.fc36)<br></div><div># ls -1 /mnt<br></div><div># mount /mnt/y<br>mount: /mnt/y: mount point does not exist.<br>dmesg(1) may have more information after failed mount system call.<br></div><div># ls -1 /mnt<br></div><div># systemctl cat mnt-y.mount<br># /run/systemd/generator/mnt-y.mount<br># Automatically generated by systemd-fstab-generator<br><br>[Unit]<br>Documentation=man:fstab(5) man:systemd-fstab-generator(8)<br>SourcePath=/etc/fstab<br>Before=local-fs.target<br><br>[Mount]<br>What=/mnt/x<br>Where=/mnt/y<br>Type=none<br>Options=bind<br></div><div># systemctl start mnt-y.mount<br></div><div># systemctl status mnt-y.mount<br>● mnt-y.mount - /mnt/y<br>Loaded: loaded (/etc/fstab; generated)<br>Active: active (mounted) since Thu 2022-10-20 09:01:05 CEST; 13s ago<br>Until: Thu 2022-10-20 09:01:05 CEST; 13s ago<br>Where: /mnt/y<br>What: /dev/mapper/vg_sys-lv_root<br>Docs: man:fstab(5)<br>man:systemd-fstab-generator(8)<br>Tasks: 0 (limit: 9333)<br>Memory: 16.0K<br>CPU: 6ms<br>CGroup: /system.slice/mnt-y.mount<br><br>Oct 20 09:01:05 demo-lab systemd[1]: Mounting mnt-y.mount - /mnt/y...<br>Oct 20 09:01:05 demo-lab systemd[1]: Mounted mnt-y.mount - /mnt/y.<br></div><div># mount | fgrep /mnt/y<br>/dev/mapper/vg_sys-lv_root on /mnt/y type ext4 (rw,relatime,seclabel,errors=remount-ro)<br></div><div># findmnt<br>TARGET                         SOURCE                                     FSTYPE      OPTIONS<br>...<br>├─/mnt/y                       /dev/mapper/vg_sys-lv_root[/mnt/x] ext4        rw,relatime,seclabel,errors=remount-ro<br></div><div>...</div><div># ls -1 /mnt<br>x<br>y<br></div><div><br></div><div>The systemd.mount unit created both directories - the destination directory /mnt/y (Where=) and also the source directory /mnt/x (What=). Additionally, this behavior for What= is not mentioned in the man page.</div><div><br></div><div><br></div><div>Thank you and with best regards,<br clear="all"><div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature">-- <br>Karel Ziegler<br><br> e-mail:    <a href="mailto:ziegleka@gmail.com" target="_blank">ziegleka@gmail.com</a><br><br></div></div></div></div>