From owner-freebsd-ruby@FreeBSD.ORG Wed Dec 30 08:08:14 2009 Return-Path: Delivered-To: ruby@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4773106568F for ; Wed, 30 Dec 2009 08:08:14 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: from mail-iw0-f198.google.com (mail-iw0-f198.google.com [209.85.223.198]) by mx1.freebsd.org (Postfix) with ESMTP id 6D33B8FC1A for ; Wed, 30 Dec 2009 08:08:21 +0000 (UTC) Received: by iwn36 with SMTP id 36so7987829iwn.3 for ; Wed, 30 Dec 2009 00:08:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:content-type :content-transfer-encoding:subject:date:message-id:to:mime-version :x-mailer; bh=Ep9hXP1RJLvtTFDUW8mu829EEzb6KZoaPqwuKMIxo94=; b=QyAWK9HADVdhcJ6Y1+IGJhjl9qrUH261dDMjtnz6FqGakHIomihDP+Srz4YNo3T++8 +oxkIuVpyhGWX7NlEZpcng5CAfbJnPSUxyh956PVfLMiXOuC9cQRSCcxm1NwUQKy+f2h +zTT+ondsw5lTRTYY+tSun6VKWECiVq3emO1U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:content-type:content-transfer-encoding:subject:date:message-id :to:mime-version:x-mailer; b=sZLb7TL0GXYbi6Wwm3OPBx/OmhQ4NnPBjcVdFRDnRTvovCn9kdABji1rAclEOWu3yQ Ri1bmHbXibKvzKHcQgloAIEo9e/oQjtlpZt0eyUrvQ3C7UCjldMKYrcTt8iuQmZ7Q2VO wowbtnM2u/fW+yud8fSPaC6/r4ZUo5SF5v8xE= Received: by 10.231.123.41 with SMTP id n41mr333704ibr.46.1262159058559; Tue, 29 Dec 2009 23:44:18 -0800 (PST) Received: from ?192.168.1.4? (c-71-196-193-228.hsd1.co.comcast.net [71.196.193.228]) by mx.google.com with ESMTPS id 21sm12563159iwn.2.2009.12.29.23.44.17 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 29 Dec 2009 23:44:17 -0800 (PST) From: James Harrison Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Date: Wed, 30 Dec 2009 00:43:35 -0700 Message-Id: <7397BEE9-C5E2-4508-AD41-722EDDAA4044@gmail.com> To: ruby@freebsd.org Mime-Version: 1.0 (Apple Message framework v1077) X-Mailer: Apple Mail (2.1077) Cc: Subject: confirm bug still exists? X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Dec 2009 08:08:15 -0000 http://www.freebsd.org/cgi/query-pr.cgi?pr=3D112818&cat=3D I have an NFS server, /etc/exports reads: [root@centos ~]# cat /etc/exports=20 /home/james/portsold 172.16.128.133(rw) I mount it on my FreeBSD box: [root@server /usr]# mv ports portsold [root@server /usr]# mkdir ports [root@server /usr]# mount 172.16.128.137:/home/james/portsold ports [root@server /usr]# ls -l | grep ports drwxr-xr-x 69 500 500 4096 Dec 30 07:22 ports On the FreeBSD server: drwxr-xr-x 69 james james 4096 Dec 29 2009 portsold Using portupgrade-devel: [root@server /usr]# portupgrade -a [Updating the portsdb in /var/db/pkg ... - 21055 port = entries found = .........1000.........2000.........3000.........4000.........5000.........= 6000.........7000.........8000.........9000.........10000.........11000...= ......12000.........13000.........14000.........15000.........16000.......= ..17000.........18000.........19000.........20000.........21000 ..... = done] ---> Upgrading 'mysql-client-5.0.88' to 'mysql-client-5.0.89' = (databases/mysql50-client) ---> Building '/usr/ports/databases/mysql50-client' ...etc, etc, etc. The /usr/ports directory isn't writeable: [root@server /]# portsnap fetch update Looking up us.portsnap.FreeBSD.org mirrors... 2 mirrors found. Fetching snapshot tag from portsnap1.FreeBSD.org... done. Fetching snapshot metadata... done. Updating from Tue Dec 29 22:20:49 UTC 2009 to Wed Dec 30 05:02:19 UTC = 2009. Fetching 4 metadata patches... done. Applying metadata patches... done. Fetching 0 metadata files... done. Fetching 2 patches.. done. Applying patches... done. Fetching 0 new ports or files... done. portsnap: Directory is not writable: /usr/ports [root@server /]# cd usr/ports [root@server /usr/ports]# touch something touch: something: Permission denied However, it's true that I did do a little hinkying around to get stuff = to partially build with an NFS mounted directory. Anybody able to confirm that the bug still exists as described in the = PR? James=