diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-12-04 21:43:02 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-12-04 21:43:02 +0000 |
commit | 7d4d49345f2b0164a8d55b40405c9a6e04ef15dc (patch) | |
tree | e96f21d973153d8129c5998424bf6ac20f21cf7f /gui-libs/display-manager-init/files/startDM | |
parent | 68dd662f1dbc715e101e3797a8b4d9b5a4d5634e (diff) |
gui-libs/display-manager-init : version bump
Diffstat (limited to 'gui-libs/display-manager-init/files/startDM')
-rw-r--r-- | gui-libs/display-manager-init/files/startDM | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui-libs/display-manager-init/files/startDM b/gui-libs/display-manager-init/files/startDM index 976d1dd2..b23344bb 100644 --- a/gui-libs/display-manager-init/files/startDM +++ b/gui-libs/display-manager-init/files/startDM @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License, v2 # We need to source /etc/profile.env for stuff like $LANG to work @@ -23,7 +23,7 @@ PIDFILE="$(get_options pidfile)" START_STOP_ARGS="$(get_options start_stop_args)" start-stop-daemon --start --exec "${EXEC}" \ -"${NAME:+--name}" "${NAME}" "${PIDFILE:+--pidfile}" "${PIDFILE}" ${START_STOP_ARGS} || \ +${NAME:+--name} ${NAME} ${PIDFILE:+--pidfile} ${PIDFILE} ${START_STOP_ARGS} || \ eerror "ERROR: could not start the Display Manager" # vim:ts=4 |