From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 394A5158021 for ; Fri, 16 Dec 2022 20:38:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 860A7E09AE; Fri, 16 Dec 2022 20:38:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 70E97E09AE for ; Fri, 16 Dec 2022 20:38:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B4B8A34113C for ; Fri, 16 Dec 2022 20:38:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 51AA97CC for ; Fri, 16 Dec 2022 20:38:56 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1671223117.e42f2ce182a2274661081bc13ef2e9b7526fab56.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/erlang/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/erlang/files/epmd.init X-VCS-Directories: dev-lang/erlang/files/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: e42f2ce182a2274661081bc13ef2e9b7526fab56 X-VCS-Branch: master Date: Fri, 16 Dec 2022 20:38:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ad49c408-6383-4f4f-b7f9-6d014b9d1e31 X-Archives-Hash: 4d51c9fc348f59434a821a739ab65ad4 commit: e42f2ce182a2274661081bc13ef2e9b7526fab56 Author: Matthew Smith gentoo org> AuthorDate: Fri Dec 16 20:34:43 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Fri Dec 16 20:38:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e42f2ce1 dev-lang/erlang: remove unused files Signed-off-by: Matthew Smith gentoo.org> dev-lang/erlang/files/epmd.init | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/dev-lang/erlang/files/epmd.init b/dev-lang/erlang/files/epmd.init deleted file mode 100644 index 211d1dad47b4..000000000000 --- a/dev-lang/erlang/files/epmd.init +++ /dev/null @@ -1,26 +0,0 @@ -#!/sbin/openrc-run -# Copyright 2010-2019 Gentoo Authors -# Distributed under the terms of the Apache License, Version 2.0 - -ZT_ADDRESS="" -pidfile="/var/run/epmd.pid" -command_args="-daemon -relaxed_command_check -address 127.0.0.1" - -depend() { - need loopback - 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 $? -}