From 7a62c034a3e9e235bdfea964146d97defc6b0b02 Mon Sep 17 00:00:00 2001 From: steveokard Date: Wed, 24 Jan 2024 17:45:15 -0500 Subject: [PATCH] systemd unit for mounting nfs share --- scripts/systemd/home-stev-server.mount | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 scripts/systemd/home-stev-server.mount diff --git a/scripts/systemd/home-stev-server.mount b/scripts/systemd/home-stev-server.mount new file mode 100644 index 0000000..508f2d8 --- /dev/null +++ b/scripts/systemd/home-stev-server.mount @@ -0,0 +1,12 @@ +[Unit] +Description=Automatically Mount Stev-Server NFS Share +After=network.target + +[Mount] +What=192.168.1.147:/home/stev +Where=/home/stev/server +Type=nfs +Options=auto,nofail,noatime + +[Install] +WantedBy=multi-user.target