17755: Merge branch 'main' into 17755-add-singularity-to-compute-image
[arvados.git] / services / dockercleaner / arvados-docker-cleaner.service
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 [Unit]
6 Description=Arvados Docker Image Cleaner
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 Restart=always
16 RestartSec=10s
17 RestartPreventExitStatus=2
18 #
19 # This unwieldy ExecStart command detects at runtime whether
20 # arvados-docker-cleaner is installed with the Python 3.3 Software
21 # Collection, and if so, invokes it with the "scl" wrapper.
22 ExecStart=/bin/sh -c 'if [ -e /opt/rh/rh-python36/root/bin/arvados-docker-cleaner ]; then exec scl enable rh-python36 arvados-docker-cleaner; else exec arvados-docker-cleaner; fi'
23
24 # systemd<=219 (centos:7, debian:8, ubuntu:trusty) obeys StartLimitInterval in the [Service] section
25 StartLimitInterval=0
26
27 [Install]
28 WantedBy=multi-user.target