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