Comment on systemd has been a complete, utter, unmitigated success
cenzorrll@piefed.ca 1 day agoI have a wait-for-ping service that pings nas A, once it gets a successful response it tries to mount.
I lifted it from a time when I needed to ping my router because Debian had a network-online service bug. I adapted it to my nas because the network-online issue eventually got fixed and mounting my shares became the next biggest issue.
It seems like this person might have grabbed that same fix for what I eventually did because our files are…oddly almost exactly the same.
WhyJiffie@sh.itjust.works 1 day ago
thanks!
do you perhaps have a solution for hanging accesses to network mounts when the server is inaccessible?
cenzorrll@piefed.ca 21 hours ago
Do you mean a hang on boot when trying to mount? For that I use the
nofailoption in fstab. I also use thex-systemd.automountoption so if something is not mounted for whatever reason, it tries to mount it when something attempts to access it.WhyJiffie@sh.itjust.works 17 hours ago
no, I mean the system has been up for a long time, but the server went down, and connection was lost
cenzorrll@piefed.ca 10 hours ago
That’s all handled with adding the
x-systemd.automountoption to my fstab entry. If it disconnects it’s unmounted, when it’s available again it mounts when something tries to access it.I have occasionally needed to restart some services if they didn’t like getting disconnected, but as far as mounting goes it’s handled pretty smoothly with that option.