From owner-freebsd-questions@freebsd.org Tue Dec 5 14:22:40 2017 Return-Path: Delivered-To: freebsd-questions@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 78E2CE6B5A4 for ; Tue, 5 Dec 2017 14:22:40 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.117.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 3C4997C7DB for ; Tue, 5 Dec 2017 14:22:39 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from leaf.local (unknown [88.202.132.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: m.seaman@infracaninophile.co.uk) by smtp.infracaninophile.co.uk (Postfix) with ESMTPSA id B007418F8 for ; Tue, 5 Dec 2017 14:22:34 +0000 (UTC) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=fail (p=none dis=none) header.from=infracaninophile.co.uk Subject: Re: Package conflict: bind v/s bind-tools To: freebsd-questions@freebsd.org References: From: Matthew Seaman Message-ID: Date: Tue, 5 Dec 2017 14:22:34 +0000 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-GB Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2017 14:22:40 -0000 On 05/12/2017 14:10, Gordon Ewasiuk via freebsd-questions wrote: > Howdy List, > > Pkg tells me I can have bind OR bind-utils due to a conflict with > arpaname, which comes with bind: > >> [me@mail1 ~]$ sudo pkg install bind-tools >> (snip) >> Checking integrity... done (1 conflicting) >>  - bind-tools-9.11.2 conflicts with bind911-9.11.2 on >> /usr/local/bin/arpaname >> >> The following 2 package(s) will be affected (of 0 checked): >> >> Installed packages to be REMOVED: >>        bind911-9.11.2 >> >> New packages to be INSTALLED: >>        bind-tools: 9.11.2 > > So...I can have BIND and run a DNS server or I can have dig/delv and not > run BIND? > > Is this a recent change?  Has anyone else encountered it?  If so, how > did you handle it?  (Unbound isn't an option for me at this time.) The bind server package includes everything that's in the bind-utils package: % pkg which /usr/local/bin/dig /usr/local/bin/dig was installed by package bind911-9.11.2_4 % pkg which /usr/local/bin/delv /usr/local/bin/delv was installed by package bind911-9.11.2_4 So just install bind if you want to use it as a nameserver. Cheers, Matthew