<div dir="ltr"><div>Good day all. <br></div><div><br></div><div>I have a service that requires a disk, which is mounted via NFS. <br></div><div><br></div><div>I've used data.mount to mount the NFS as follows:</div><div>[Unit]<br>Description=Mount Data<br><br>[Mount]<br>What=192.168.60.10:/mnt/ta_data<br>Where=/data<br>Type=nfs<br>Options=vers=4,_netdev,auto<br><br>[Install]<br>WantedBy=multi-user.target</div><div><br></div><div>and then the service is managed with mission.service:</div><div>[Unit]<br>Description=Mission Control<br>After=network.target data.mount<br>Wants=network.target<br><br>[Service]<br>Type=simple<br>User=oxbotica<br>ExecStart=/opt/mission-bin/start-web-server.sh<br>Restart=on-failure<br><br>[Install]<br>WantedBy=multi-user.target</div><div><br></div><div>Since mission.service requires data.mount I added:</div><div>Requires=data.mount <br></div><div>to mission.service [Unit]</div><div><br></div><div>This works perfectly, except when the NFS server is not available. This does happen from time to time when the two machines are started at the same time (these are not permanently running machines), then I need the server the units are running on to wait for the NFS server. <br></div><div><br></div><div>To do this I added:</div><div>TimeoutSec=5m</div><div>to the [Mount] section. <br></div><div><br></div><div>While starting data.mount, this works correctly, as it waits for the NFS share to become available before it mounts.. However, starting mission.service without starting data.mount, it correctly requires data.mount, but mission.service executes anyway. <br></div><div><br></div><div>I'm not entirely sure why this happens. <br></div><div><br></div><div>When I disconnect the NFS share from the network and run data.mount, it gives the expected output of:</div><div>Sep 10 14:26:31 dcv1uk-mvc rpc.gssd[1081]: ERROR: unable to resolve 192.168.60.10 to hostname: Name or service not known<br>Sep 10 14:26:31 device01 rpc.gssd[1081]: ERROR: failed to parse nfs/clnt3f/info<br>Sep 10 14:26:31 device01 rpc.gssd[1081]: ERROR: unable to resolve 192.168.60.10 to hostname: Name or service not known<br>Sep 10 14:26:31 device01 rpc.gssd[1081]: ERROR: failed to parse nfs/clnt3f/info</div><div><br></div><div>until the NFS share is reconnected and then:</div><div>Sep 10 14:26:51 device01 systemd[1]: Mounted Mount GTA on Data.</div><div><br></div><div>When I start mission.services I get:</div><div>device01  systemd[1]: Started Mission Execution Manager.<br>device01  systemd[1]: missioncontrol_execution_manager.service: Main process exited, code=exited, status=1/FAILURE<br>device01  systemd[1]: missioncontrol_execution_manager.service: Failed with result 'exit-code'.<br>device01  systemd[1]: missioncontrol_execution_manager.service: Scheduled restart job, restart counter is at 5.<br>device01  systemd[1]: Stopped Mission Execution Manager.<br>device01  systemd[1]: missioncontrol_execution_manager.service: Start request repeated too quickly.<br>device01  systemd[1]: missioncontrol_execution_manager.service: Failed with result 'exit-code'.<br>device01  systemd[1]: Failed to start Mission Execution Manager.<br>device01  rpc.gssd[1081]: ERROR: unable to resolve 192.168.60.10 to hostname: Name or service not known<br>device01  rpc.gssd[1081]: ERROR: failed to parse nfs/clnt51/info<br>device01  rpc.gssd[1081]: ERROR: unable to resolve 192.168.60.10 to hostname: Name or service not known<br>device01  rpc.gssd[1081]: ERROR: failed to parse nfs/clnt52/info<br>device01  rpc.gssd[1081]: ERROR: unable to resolve 192.168.60.10 to hostname: Name or service not known<br>device01  rpc.gssd[1081]: ERROR: failed to parse nfs/clnt53/info</div><div><br></div><div>Am I misunderstanding how this is supposed to work ? <br></div><div><br></div><div>Kind regards</div><div>Henti<br></div><div><br></div><div><br></div></div>