From owner-freebsd-current@freebsd.org Thu Oct 3 13:53:51 2019 Return-Path: Delivered-To: freebsd-current@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DE3C913694C for ; Thu, 3 Oct 2019 13:53:51 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from sarah.protected-networks.net (sarah.protected-networks.net [64.46.156.146]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (1024 bits) client-digest SHA256) (Client CN "sarah.protected-networks.net", Issuer "Protected Networks CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 46kZH23RJnz48q5; Thu, 3 Oct 2019 13:53:50 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from mail.protected-networks.net (mail.protected-networks.net [202.12.127.228]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (1024 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mail.protected-networks.net", Issuer "Protected Networks CA" (verified OK)) by sarah.protected-networks.net (Postfix) with ESMTPS id 9A0ECD79D0; Thu, 3 Oct 2019 09:47:28 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d= protected-networks.net; h=content-transfer-encoding :content-language:content-type:content-type:mime-version :user-agent:date:date:message-id:subject:subject:from:from; s= 201508; t=1570110433; bh=DyWgdfW79+BGws1BlP33ZE8XIGIAiN0G2wuBMxg 61E0=; b=OJeCbKHVScV52+TXg27ObzrVmN4J65KlxNYROT2ZVX6+KMg1vVLpWxg sKMYOZWfMKs030hFe1CKkHD15nA1nNhsdKOlzdKjJ8XAuwb4Z0zM5JRjjr5gCAz+ z99opygRynIFDhmQ6aFUjh7Ys9+iWDl2SXtMaqXOS2QFAbMAoxfA= Received: from toshi.auburn.protected-networks.net (toshi.auburn.protected-networks.net [192.168.1.10]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (Client did not present a certificate) (Authenticated sender: imb@mail.protected-networks.net) by mail.protected-networks.net (Postfix) with ESMTPSA id B422637BDB; Thu, 3 Oct 2019 09:47:13 -0400 (EDT) To: trasz@freebsd.org, Ed Maste Cc: freebsd-current From: Michael Butler Subject: rc.d/linux runs unconditionally Message-ID: Date: Thu, 3 Oct 2019 09:47:13 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:68.0) Gecko/20100101 Thunderbird/68.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Language: en-NZ Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 46kZH23RJnz48q5 X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=protected-networks.net header.s=201508 header.b=OJeCbKHV; dmarc=none; spf=pass (mx1.freebsd.org: domain of imb@protected-networks.net designates 64.46.156.146 as permitted sender) smtp.mailfrom=imb@protected-networks.net X-Spamd-Result: default: False [-3.28 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; R_DKIM_ALLOW(-0.20)[protected-networks.net:s=201508]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; R_SPF_ALLOW(-0.20)[+mx]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[protected-networks.net]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; TO_DN_SOME(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; DKIM_TRACE(0.00)[protected-networks.net:+]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; IP_SCORE(-0.78)[asn: 5716(-3.86), country: US(-0.05)]; ASN(0.00)[asn:5716, ipnet:64.46.156.0/24, country:US]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_ALL(0.00)[] X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.29 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: Thu, 03 Oct 2019 13:53:51 -0000 In rc.d/sysvipc we see .. name="sysvipc" desc="Load SysV IPC modules" rcvar="sysvipc_enable" start_cmd="${name}_start" .. so it won't try to run without explicitly setting sysvipc_enable in /etc/rc.conf. However in rc.d/linux, we have only .. name="linux" desc="Enable Linux ABI" start_cmd="${name}_start" .. which causes it to try to load the linux modules unconditionally even when I don't want them, imb