blob: f620b324828c2f5bac712d79100e7b27012a8ebe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% set vrf_command = 'ip vrf exec ' ~ vrf ~ ' ' if vrf is vyos_defined else '' %}
[Unit]
Description=VyOS HTTP API service
After=vyos-router.service
Requires=vyos-router.service
[Service]
ExecStart={{ vrf_command }}/usr/libexec/vyos/services/vyos-http-api-server
ExecReload=kill -HUP $MAINPID
Type=idle
SyslogIdentifier=vyos-http-api
SyslogFacility=daemon
Restart=on-failure
# Does't work but leave it here
User=root
Group=vyattacfg
[Install]
WantedBy=vyos.target
|