From owner-freebsd-questions@FreeBSD.ORG Wed Apr 5 13:55:31 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 381A316A400 for ; Wed, 5 Apr 2006 13:55:31 +0000 (UTC) (envelope-from work@ashleymoran.me.uk) Received: from mail.dc-servers.com (mail.dc-servers.com [83.243.101.206]) by mx1.FreeBSD.org (Postfix) with SMTP id ABC5843D6E for ; Wed, 5 Apr 2006 13:55:25 +0000 (GMT) (envelope-from work@ashleymoran.me.uk) Received: (qmail 14093 invoked by uid 399); 5 Apr 2006 13:55:27 -0000 Received: from unknown (HELO alfie.jigsawhq.com) (work@ashleymoran.me.uk@213.106.224.113) by mail.dc-servers.com with SMTP; 5 Apr 2006 13:55:27 -0000 From: Ashley Moran Organization: Codeweavers Ltd To: freebsd-questions@freebsd.org Date: Wed, 5 Apr 2006 14:55:20 +0100 User-Agent: KMail/1.9.1 References: <4433C86A.2060106@lintoo.dk> In-Reply-To: <4433C86A.2060106@lintoo.dk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200604051455.20733.work@ashleymoran.me.uk> Cc: Jonas Jacobsen Subject: Re: Portupgrade & Ruby | warning: Insecure world X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Apr 2006 13:55:31 -0000 On Wednesday 05 April 2006 14:38, Jonas Jacobsen wrote: > When i use portupgrade, i get this Warning all the time > > /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:980: warning: Insecure > world writable dir /tmp, mode 041777 > > have any of you seen that warning before,? and do you know how to make > it go away ? Not seen it but check the ouput of $ ls -ld /tmp (mode should be drwxrwxrwt) Maybe it is drwxrwxrwx, in which case # chmod o+t /tmp will fix it. Otherwise I'm not sure. Ashley