Serviço no Arch não inicia na inicialização do PC

2

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
    
por Camandros 16.01.2017 / 14:42

1 resposta

6

A mensagem de erro já fornece a resposta (parcialmente). Os serviços têm uma seção [Install]. A única opção é "WantedBy=". Para um serviço ser ativado, ele deve ser procurado por um alvo.

Exemplo: NetworkManager tem "WantedBy = network.target", então quando você ativa o NetworkManager, ele é agrupado em network.target e iniciado assim que o systemd inicia network.target

Pense nisso como os runlevels no SysV-init, um daemon deve ser inserido em um runlevel, caso contrário ... quando ele deve começar?

Um padrão seguro é definir "WantedBy = multi-user.target", é o último que foi iniciado.

    
por 23.01.2017 / 15:06