blob: 3309db64f4b23bcc6ba1f856788a23ea38b68925 [file] [log] [blame]
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
description "Downloadable content service daemon"
author "chromium-os-dev@chromium.org"
start on starting system-services
stop on stopping system-services
expect fork
respawn
respawn limit 3 10 # if the job respawns 3 times in 10 seconds, stop trying.
pre-start script
# Initialize:
# -The DLC module image root directory.
# -The DLC metadata directory.
for dlc_path in "/var/cache/dlc" "/var/lib/dlc"
do
mkdir -p "${dlc_path}"
chmod 0755 "${dlc_path}"
chown dlcservice:dlcservice "${dlc_path}"
done
end script
exec minijail0 -i -u dlcservice -g dlcservice -G -n -S \
/usr/share/policy/dlcservice-seccomp.policy /usr/sbin/dlcservice