From owner-svn-src-all@FreeBSD.ORG Mon Oct 22 12:12:42 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 67A35A05 for ; Mon, 22 Oct 2012 12:12:42 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 2BECB8FC0A for ; Mon, 22 Oct 2012 12:12:41 +0000 (UTC) Received: by mail-pb0-f54.google.com with SMTP id rp8so2011216pbb.13 for ; Mon, 22 Oct 2012 05:12:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=17prv9edYg3uPxCGRwxFhQOpp8lc0XvlzxeD/cBEdxY=; b=AZ4HDjmukaF7k/i8hazrCHrKAAvO9XQ3kiT0+LMcgMqk+io4sIvhtu42RDkFFHmCzE oqUzZ3mSq2p3X52KDNAtzim+65v/P0Lq2S3rwdvBFeBxlah2MCPJ/tui+CT4eQSXUpl8 h5dUzGwrWZCZzkEZ8r1wJIwmwUmGwsoeLz3CA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=17prv9edYg3uPxCGRwxFhQOpp8lc0XvlzxeD/cBEdxY=; b=RPi4jHBt5y11faGjbZtIMms9/IgzJ1FwG7YvvZ4COtboE1V9x6tKYdM0QO6CZk1GVS ZTxQgDu/TYyILjRhVXQjHDD6Vs6fOxNYwLRN4HlTBOLu/AcR1pM+x4rjlZTkignkxBtI E88PYs0StGUqw4kGOzBfVgn82em+1o2D0d4dAUjRveFaiuLKJIbqc3wDaHbA4gye49Zj kUM6xhnSVfUOdiw7sXm2/GHhouy/6A0oZ5cin9eceCCUrGs/cEyQXVPTDRJPYUXX0WMw Ocsrjxa2knmarlVddcg1I+HgOv1NDXbwjOk+713Ecfbqzr5dBmSm2Zsu+BeW2MJ1O4/Z 8oOQ== Received: by 10.68.253.102 with SMTP id zz6mr29152249pbc.99.1350907961773; Mon, 22 Oct 2012 05:12:41 -0700 (PDT) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.66.161.163 with HTTP; Mon, 22 Oct 2012 05:12:11 -0700 (PDT) In-Reply-To: <5084CA3D.2030807@delphij.net> References: <201210220357.q9M3v18q026797@svn.freebsd.org> <5084CA3D.2030807@delphij.net> From: Eitan Adler Date: Mon, 22 Oct 2012 08:12:11 -0400 X-Google-Sender-Auth: dflj2pp6nECxbsYhl1FzdJrJwp0 Message-ID: Subject: Re: svn commit: r241862 - in head/usr.bin: . ssh-copy-id To: d@delphij.net Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQkFsTL2IcKRnQ6DaV//+AsmefAA3rjYYY9+mS5Ni5MKsCnSd0KcAlRgz/hiq8WxAZQHEOVg Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Oct 2012 12:12:42 -0000 On 22 October 2012 00:23, Xin Li wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA256 > > On 10/21/12 8:57 PM, Eitan Adler wrote: >> Author: eadler Date: Mon Oct 22 03:57:00 2012 New Revision: 241862 >> URL: http://svn.freebsd.org/changeset/base/241862 >> >> Log: Add a clean-room reimplementation of a script originally >> found in openssh's contrib directory. >> >> This version has more features and is better written. I intend to >> submit this upstream as well. >> >> Reviewed by: bapt Reviewed by: des Approved by: cperciva MFC >> after: 1 week >> >> Added: head/usr.bin/ssh-copy-id/ head/usr.bin/ssh-copy-id/Makefile >> (contents, props changed) head/usr.bin/ssh-copy-id/ssh-copy-id.1 >> (contents, props changed) head/usr.bin/ssh-copy-id/ssh-copy-id.sh >> (contents, props changed) Modified: head/usr.bin/Makefile > [...] >> Added: head/usr.bin/ssh-copy-id/Makefile >> ============================================================================== >> >> >> > - --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/usr.bin/ssh-copy-id/Makefile Mon Oct 22 03:57:00 2012 >> (r241862) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +SCRIPTS= ssh-copy-id.sh >> +MAN= ssh-copy-id.1 + +.include +# $FreeBSD$ + >> +SCRIPTS= ssh-copy-id.sh +MAN= ssh-copy-id.1 + +.include >> +# $FreeBSD$ + +SCRIPTS= ssh-copy-id.sh +MAN= >> ssh-copy-id.1 + +.include +# $FreeBSD$ + +SCRIPTS= >> ssh-copy-id.sh +MAN= ssh-copy-id.1 + +.include > > I think this should be just 1 versus 4 copies? Fixed. Thanks. I'm not sure how that happened. -- Eitan Adler Source & Ports committer X11, Bugmeister, Ports Security teams