I have a systemd service named webserver.service that is wanted by multiuser.target (enabled by default on system). I have another service under another target named test.service that I want to run after webserver.service.Within test.servive I’m adding:
After=webserver.service
Is it enough or should I add following require statement as well:
Requires=webserver.service
Tried with just after statement is seems working as expected, just worried about any potential of race here.