diff options
author | Petr Vaněk <arkamar@atlas.cz> | 2019-11-22 10:04:00 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2019-11-22 10:31:50 +0000 |
commit | f9f670213bb8bdf93f68fdc3d5a7c6d72aa53786 (patch) | |
tree | 0e56707f69fd8dfd23f6216acd328a882e526aad /dev-lang/erlang/files | |
parent | dev-lang/erlang: bump to 22.1.8 (diff) | |
download | gentoo-f9f670213bb8bdf93f68fdc3d5a7c6d72aa53786.tar.gz gentoo-f9f670213bb8bdf93f68fdc3d5a7c6d72aa53786.tar.bz2 gentoo-f9f670213bb8bdf93f68fdc3d5a7c6d72aa53786.zip |
dev-lang/erlang: drop old versions
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Petr Vaněk <arkamar@atlas.cz>
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-lang/erlang/files')
-rw-r--r-- | dev-lang/erlang/files/epmd.confd | 2 | ||||
-rw-r--r-- | dev-lang/erlang/files/epmd.init-r1 | 24 |
2 files changed, 0 insertions, 26 deletions
diff --git a/dev-lang/erlang/files/epmd.confd b/dev-lang/erlang/files/epmd.confd deleted file mode 100644 index ea1deab6e273..000000000000 --- a/dev-lang/erlang/files/epmd.confd +++ /dev/null @@ -1,2 +0,0 @@ -#arguments for run erlang -command_args="-daemon -relaxed_command_check -address 127.0.0.1" diff --git a/dev-lang/erlang/files/epmd.init-r1 b/dev-lang/erlang/files/epmd.init-r1 deleted file mode 100644 index eb387a729580..000000000000 --- a/dev-lang/erlang/files/epmd.init-r1 +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the Erlang Public License 1.1 - -pidfile="/var/run/epmd.pid" - -depend() { - need net.lo - before sshd -} - -start() { - ebegin "Starting Erlang Port Mapper Daemon" - start-stop-daemon --start --quiet \ - --pidfile "${pidfile}" \ - --exec /usr/bin/epmd -- $command_args - eend $? -} - -stop() { - ebegin "Stopping Erlang Port Mapper Daemon" - /usr/bin/epmd -kill >/dev/null - eend $? -} |