summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2019-04-03 14:23:00 +0200
committerLars Wendler <polynomial-c@gentoo.org>2019-04-03 14:23:00 +0200
commitbb06c4171f88467a4f354eac22b44d4d9bde83fc (patch)
tree6f693731ddd53caa2906a1258b43b9e1a5282028 /games-simulation/openttd/files
parentgames-simulation/openttd: Bump to version 1.9.0 (diff)
downloadgentoo-bb06c4171f88467a4f354eac22b44d4d9bde83fc.tar.gz
gentoo-bb06c4171f88467a4f354eac22b44d4d9bde83fc.tar.bz2
gentoo-bb06c4171f88467a4f354eac22b44d4d9bde83fc.zip
games-simulation/openttd: Removed old.
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'games-simulation/openttd/files')
-rw-r--r--games-simulation/openttd/files/openttd.initd19
1 files changed, 0 insertions, 19 deletions
diff --git a/games-simulation/openttd/files/openttd.initd b/games-simulation/openttd/files/openttd.initd
deleted file mode 100644
index 7a719587c7d6..000000000000
--- a/games-simulation/openttd/files/openttd.initd
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v2 or later
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting OpenTTD dedicated server"
- start-stop-daemon --start -q --exec /usr/games/bin/openttd -- -D -f > /dev/null
- eend $?
-}
-
-stop() {
- ebegin "Stopping OpenTTD dedicated server"
- start-stop-daemon --stop -q -n openttd
- eend $?
-}