From owner-freebsd-current@freebsd.org Mon Apr 3 14:00:23 2017 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BEAB9D2B312 for ; Mon, 3 Apr 2017 14:00:23 +0000 (UTC) (envelope-from tech-lists@zyxst.net) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 927C27B6 for ; Mon, 3 Apr 2017 14:00:22 +0000 (UTC) (envelope-from tech-lists@zyxst.net) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id A796120AD1 for ; Mon, 3 Apr 2017 10:00:15 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute4.internal (MEProxy); Mon, 03 Apr 2017 10:00:15 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zyxst.net; h= content-transfer-encoding:content-type:date:from:message-id :mime-version:subject:to:x-me-sender:x-me-sender:x-sasl-enc :x-sasl-enc; s=fm1; bh=Yhs9SkqSNzBVNJd145lfHbIHWDroii46PkBH2ZHAf oM=; b=a3xr21sKk5axH6J3EPzgHsHb9lIUY3M6ZnpMZ8/BMvfgDuS6W39N2XzeQ eVYjBGfjzbvjM1MWj7BfZAnG2BLK0RuTzVVB+mPqXHY08gMO7cqLclsyX2KqkNgQ FxumOFF0DC7s1iFWfPj2LVsnssNe0S8lJu7f1G74tYFdpYT/H5us17XAUbHBc2Er /IucKqCDPnDc5wjZfVbOb8wrW1sIZLzhPcK1hPa8/KkryUbrLU2IxUe2xjb/sOYP PgXYx5dOG6IlpjL+DF1RfsqAKa3YiUqFDv67CPg7bZyzs+yQAzZjRrE+wMh08t3l SWiDvp7LLMbYtopf5GLvGYhCEcx1Q== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:message-id:mime-version:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=Yhs9SkqSNzBVNJd145 lfHbIHWDroii46PkBH2ZHAfoM=; b=gWsicuFCEdPC5QZ2udiRk6MVK7VN49ouxs l4RSOM7QzXaDZd1G/uewKdj7kHtlqtfdaAgpwAPRKmzjJAagiSu9aGQLFgrI1YBc kcRm7iw0MjW7Qh4yydn6fcF3logZlUgad43BkArZl2Awt04zS3tkYdmwRVwMMdTX x0j6APAbRNae1NEI9db8RQIm4gCIdLAH+9eRQ5K+k+Yy4A1GN4jjYMnrNjS6L3It SqTcwYA4kH6rmsF/U/6fGA5wdDQWtqoOatqDVGPbxpAOs0WBAV8ZI1r55KiFqRDJ e7HDVVClEjfoKgRS+McxNAUDVJ39dpOQhrPHYC+yeNDKl9r8dOAA== X-ME-Sender: X-Sasl-enc: PV2Ggs7XvyJOFO7hWX+BYjBO69ZAUzUwbwaFYes71mXf 1491228015 Received: from pumpkin.growveg.org (pumpkin.growveg.org [82.70.91.101]) by mail.messagingengine.com (Postfix) with ESMTPA id 49F6B7E21E for ; Mon, 3 Apr 2017 10:00:15 -0400 (EDT) To: freebsd-current@freebsd.org From: tech-lists Subject: inetd startup script missing from /etc/rc.d in both -current and 11-stable Message-ID: <471c8e3d-3745-78bd-b8e3-1319e814076d@zyxst.net> Date: Mon, 3 Apr 2017 15:00:14 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-GB Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Apr 2017 14:00:23 -0000 Hello current@, >From https://www.freebsd.org/doc/handbook/network-inetd.html I should be able to start inetd like this: service inetd start ...after enabling it in /etc/rc.conf. The inetd options look like this: inetd_enable="YES" inetd_program="/usr/sbin/inetd" inetd_flags="-wW -C 60" The problem is that the startup script doesn't exist in /etc/rc.d. I get this error: # service inetd start inetd does not exist in /etc/rc.d or the local startup directories (/usr/local/etc/rc.d), or is not executable and the lines in rc.conf have no effect (inetd doesn't start). I can, however, start it manually, as root, like this: # inetd -wW -C 60 and it runs as expected. This problem exists in 11-stable as well as -current. How can I fix this please? thanks, -- J.