Estou executando o Arch Linux. Eu tenho um serviço em /etc/systemd/system/
com a seguinte descrição
[Unit]
After=network.target
[Service]
Type=simple
ExecStart=(...)service.py
ExecReload=(...)service.py
Restart=always
Eu o configurei para iniciar depois que a rede for estabelecida, pois depende de uma conexão de rede.
Quando inicializo o PC, o serviço está sempre inativo. Se eu inicio manualmente, funciona perfeitamente. Também reinicia se houver algum erro interno. Por que não inicia na inicialização?
EDITAR
Ao ativar o serviço, recebo esta mensagem:
➜ ~ systemctl enable py_service.service
The unit files have no installation config (WantedBy, RequiredBy, Also, Alias
settings in the [Install] section, and DefaultInstance for template units).
This means they are not meant to be enabled using systemctl.
Possible reasons for having this kind of units are:
1) A unit may be statically enabled by being symlinked from another unit's
.wants/ or .requires/ directory.
2) A unit's purpose may be to act as a helper for some other unit which has
a requirement dependency on it.
3) A unit may be started when needed via activation (socket, path, timer,
D-Bus, udev, scripted systemctl call, ...).
4) In case of template units, the unit is meant to be enabled with some
instance name specified.
1) não é um link simbólico
2) não é um ajudante
3) Eu pensei que isso foi coberto pelo After=network...
4) Eu não sei o que isso significa
EDIT 2 Seguindo a sugestão de @dustball, editei para:
cat /etc/systemd/system/py_service.service
[Install]
WantedBy=multi-user.target
[Unit]
After=network.target
[Service]
Type=simple
ExecStart=(...)service.py
ExecReload=(...)service.py
Restart=always
Mas não foi iniciado na inicialização: (
EDIT 3
A configuração acima funciona, eu esqueci de habilitá-lo (graças a @Daniel H)
recarregar os serviços usando
sudo systemctl daemon-reload
e, em seguida, ativá-lo usando
systemctl enable py_service.service