openrc/init.d/user.in
Anna (navi) Figueiredo Gomes a7069c0757 Revert "init.d/user: add a respawn_delay value"
this reverts commit 1146ee616c55751db4350c389757862d67e7a1b0.

safe-guarding against new defaults in /etc/rc.conf isn't really great in
retrospect, so ideally we improve the defaults so that rc.conf presets
are not needed.

Bug: https://github.com/OpenRC/openrc/issues/852
2025-04-29 16:25:41 +02:00

32 lines
1.0 KiB
Plaintext

#!@SBINDIR@/openrc-run
# Copyright (c) 2017 The OpenRC Authors.
# See the Authors file at the top-level directory of this distribution and
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
#
# This file is part of OpenRC. It is subject to the license terms in
# the LICENSE file found in the top-level directory of this
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
# This file may not be copied, modified, propagated, or distributed
# except according to the terms contained in the LICENSE file.
supervisor=supervise-daemon
description="starts an openrc session for an user"
user="${RC_SVCNAME#*.}"
command="@RC_LIBEXECDIR@/bin/openrc-user"
command_args="$user"
notify="fd:3"
# If it's rapidly failing, usually due to XDG_RUNTIME_DIR being unset,
# we should just quit fast.
respawn_max=3
respawn_period=5
start_pre() {
if [ "$user" = "$RC_SVCNAME" ]; then
eerror "${RC_SVCNAME} cannot be started directly. You must create"
eerror "symbolic links to it for the users you want to start"
return 1
fi
}