From owner-freebsd-questions@freebsd.org Wed Mar 31 18:33:58 2021 Return-Path: Delivered-To: freebsd-questions@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 89C2D5AB777 for ; Wed, 31 Mar 2021 18:33:58 +0000 (UTC) (envelope-from doug@fledge.watson.org) Received: from cyrus.watson.org (cyrus.watson.org [204.107.128.30]) by mx1.freebsd.org (Postfix) with ESMTP id 4F9Zhj3MF0z4SxQ for ; Wed, 31 Mar 2021 18:33:57 +0000 (UTC) (envelope-from doug@fledge.watson.org) Received: from fledge.watson.org (fledge.watson.org [198.74.231.63]) by cyrus.watson.org (Postfix) with ESMTPS id 5ACCB17132 for ; Wed, 31 Mar 2021 18:33:51 +0000 (UTC) Received: from fledge.watson.org (doug@localhost [127.0.0.1]) by fledge.watson.org (8.16.1/8.16.1) with ESMTPS id 12VIXpBW047271 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO) for ; Wed, 31 Mar 2021 18:33:51 GMT (envelope-from doug@fledge.watson.org) Received: from localhost (doug@localhost) by fledge.watson.org (8.16.1/8.16.1/Submit) with ESMTP id 12VIXpZV047268 for ; Wed, 31 Mar 2021 18:33:51 GMT (envelope-from doug@fledge.watson.org) Date: Wed, 31 Mar 2021 18:33:51 +0000 (UTC) From: doug Reply-To: doug@safeport.com To: freebsd-questions@freebsd.org Subject: Re: mariadb server now requires bash? In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed X-Rspamd-Queue-Id: 4F9Zhj3MF0z4SxQ X-Spamd-Bar: + Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=none (mx1.freebsd.org: domain of doug@fledge.watson.org has no SPF policy when checking 204.107.128.30) smtp.mailfrom=doug@fledge.watson.org X-Spamd-Result: default: False [1.00 / 15.00]; HAS_REPLYTO(0.00)[doug@safeport.com]; TO_DN_NONE(0.00)[]; RCVD_COUNT_THREE(0.00)[4]; RCVD_NO_TLS_LAST(0.10)[]; FROM_EQ_ENVFROM(0.00)[]; SUBJECT_ENDS_QUESTION(1.00)[]; R_DKIM_NA(0.00)[]; RBL_DBL_DONT_QUERY_IPS(0.00)[204.107.128.30:from]; MID_RHS_MATCH_FROM(0.00)[]; ASN(0.00)[asn:11288, ipnet:204.107.128.0/24, country:US]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; MIME_TRACE(0.00)[0:+]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; MIME_GOOD(-0.10)[text/plain]; REPLYTO_DOM_NEQ_FROM_DOM(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; AUTH_NA(1.00)[]; RCPT_COUNT_ONE(0.00)[1]; SPAMHAUS_ZRD(0.00)[204.107.128.30:from:127.0.2.255]; DMARC_NA(0.00)[watson.org]; NEURAL_SPAM_SHORT(1.00)[1.000]; R_SPF_NA(0.00)[no SPF record]; MAILMAN_DEST(0.00)[freebsd-questions] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Mar 2021 18:33:58 -0000 On Wed, 31 Mar 2021, Tobias Rehbein wrote: > Am Tue, Mar 30, 2021 at 07:08:19AM +0000 schrieb Veon Ax via freebsd-questions: >> I am trying to find out why this is the case, and if there is a way >> around it. But so far my searches have not been successful. Does >> anyone know? > > The WSREP option adds bash to the dependency list. If you really want to > avoid the installation of bash, you'll have to disable this option and > build mariadb yourself using the ports tree. > > Regards, > > Tobias Installing a package without a non-needed dependency is doable. I did the following to install libreoffice and keep mysql56: pkg install libreoffice pkg delete -f mysql57-client pkg lock libreoffice pkg install mysql56-server In this case it works fine because I do not care about using the DB viewer.