Systemctl service timed out during start
Set the Type
of your service script either to simple
or oneshot
. Depending on the behavior of the shell script that is started.
- if the shell script runs an endless loop and does not exit, set
Type
tosimple
- otherwise set
Type
tooneshot
After you have made your changes reload the configuration with systemctl daemon-reload
and start your service.