Me, trying to step into the world of linux
https://feddit.de/post/2244209

Me, trying to step into the world of linux - Feddit
Here’s how to mount an nfs share:
#cat /etc/systemd/system/mnt.data.mount
[Unit]
Description=nfs mount script
[Mount]
What=192.168.0.30:/mnt/tank/Media
Where=/mnt/data
Type=nfs4
[Install]
WantedBy=remote-fs.target
Kinda interested now, why would you use systemd script for this instead of fstab ?
With these systemd mount files I don’t need to touch the fstab, I can use ansible to copy the file, enable the service then start it. I can also have other services like Docker, Jellyfin or whatever to depend on that service. If the nfs share can’t be mounted then systemd won’t try to start docker.