<div dir="ltr">Hi All,<div><br></div><div>I am trying to create a systemd service that would execute a script at shutdown before any other services start receiving shutdown notifications. I came up with this:</div><div><br></div><div>[Service]<br>Type=oneshot<br>RemainAfterExit=true<br>ExecStart=/usr/bin/true<br>ExecStop=/usr/local/bin/myscript.sh<br>[Install]<br>WantedBy=multi-user.target</div><div><br></div><div>The script does run after shutdown is initiated but since it relies on other services which are also shutting down, it fails. Is there a way to order the shutdown so that  myscript.sh is completed first before continuing with the shutdown? </div><div><br></div><div>Thanks!</div><div>David.</div></div>