diff options
author | 2021-02-26 19:11:04 +0000 | |
---|---|---|
committer | 2021-02-26 20:23:54 +0100 | |
commit | 460a8b933204f6b8788075f8faca640c15794c5e (patch) | |
tree | 8f958dc798054db2018f8a44f075a22084575a99 /gui-libs/display-manager-init/files | |
parent | gui-libs/display-manager-init: fix quotes (diff) | |
download | gentoo-460a8b933204f6b8788075f8faca640c15794c5e.tar.gz gentoo-460a8b933204f6b8788075f8faca640c15794c5e.tar.bz2 gentoo-460a8b933204f6b8788075f8faca640c15794c5e.zip |
gui-libs/display-manager-init: drop old versions
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/19673
Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org>
Diffstat (limited to 'gui-libs/display-manager-init/files')
-rw-r--r-- | gui-libs/display-manager-init/files/startDM | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gui-libs/display-manager-init/files/startDM b/gui-libs/display-manager-init/files/startDM deleted file mode 100644 index 976d1dd2d56d..000000000000 --- a/gui-libs/display-manager-init/files/startDM +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -# Copyright 1999-2020 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 -# bug #10190. -. /etc/profile.env - -# need eerror -. /lib/gentoo/functions.sh - -# Bail out early if on a non-OpenRC system: -if [ ! -d /run/openrc ]; then - eerror "$0 should only be used on OpenRC systems" -fi - -. /lib/rc/sh/functions.sh - -export RC_SVCNAME=display-manager -EXEC="$(get_options service)" -NAME="$(get_options name)" -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} || \ -eerror "ERROR: could not start the Display Manager" - -# vim:ts=4 |