ca3744c28db265832229ac5a0635114396164b35
[arvados.git] / services / health / arvados-health.service
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 [Unit]
6 Description=Arvados healthcheck server
7 Documentation=https://doc.arvados.org/
8 After=network.target
9 AssertPathExists=/etc/arvados/config.yml
10
11 # systemd==229 (ubuntu:xenial) obeys StartLimitInterval in the [Unit] section
12 StartLimitInterval=0
13
14 # systemd>=230 (debian:9) obeys StartLimitIntervalSec in the [Unit] section
15 StartLimitIntervalSec=0
16
17 [Service]
18 Type=simple
19 ExecStart=/usr/bin/arvados-health
20 # Set a reasonable default for the open file limit
21 LimitNOFILE=65536
22 Restart=always
23 RestartSec=1
24
25 # systemd<=219 (centos:7, debian:8, ubuntu:trusty) obeys StartLimitInterval in the [Service] section
26 StartLimitInterval=0
27
28 [Install]
29 WantedBy=multi-user.target