Content-Type: message/rfc822 Content-Disposition: inline; filename="Weitergeleitete Nachricht" Content-Description: Karl Eichwalder : Re: [opensuse-translation] Commit rights? Return-Path: Received: from localhost(localhost) by hermes.rz1.hosting-agency.net with LMTP; Thu, 12 Apr 2012 10:30:27 +0200 (CEST) Received: from mailfilter (localhost [127.0.0.1]) by hermes.rz1.hosting-agency.net (Postfix) with SMTP id B337F9A19C for ; Thu, 12 Apr 2012 10:30:27 +0200 (CEST) Received: from mailfilter (localhost [127.0.0.1]) by hermes.rz1.hosting-agency.net (Postfix) with SMTP id AEE849A19C for ; Thu, 12 Apr 2012 10:30:27 +0200 (CEST) Received: from lists4.suse.de (lists.opensuse.org [195.135.221.135]) by hermes.rz1.hosting-agency.net (Postfix) with ESMTP id 1DF2D9A183 for ; Thu, 12 Apr 2012 10:30:24 +0200 (CEST) Received: from lists4.suse.de (localhost [127.0.0.1]) by lists4.suse.de (Postfix) with SMTP id 9BAD382512B; Thu, 12 Apr 2012 08:29:14 +0000 (GMT) X-Original-To: opensuse-translation@lists4.opensuse.org Delivered-To: opensuse-translation@lists4.opensuse.org Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by lists4.suse.de (Postfix) with ESMTP id 4AF29823C78 for ; Thu, 12 Apr 2012 08:29:13 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by relay2.suse.de (Postfix) with ESMTP id 3DD5B1855306 for ; Thu, 12 Apr 2012 10:29:13 +0200 (CEST) Received: from relay2.suse.de ([127.0.0.1]) by localhost (localhost [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 24797-18 for ; Thu, 12 Apr 2012 10:29:13 +0200 (CEST) Received: from mx2.suse.de (cantor2.suse.de [195.135.220.15]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by relay2.suse.de (Postfix) with ESMTPS id 06DB518552E3 for ; Thu, 12 Apr 2012 10:29:13 +0200 (CEST) Received: from frechet.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id ED52193E50 for ; Thu, 12 Apr 2012 10:29:12 +0200 (CEST) From: Karl Eichwalder To: Olav Pettershagen Cc: jsdn@suse.de, opensuse-translation@opensuse.org Subject: Re: [opensuse-translation] Commit rights? References: <3034883.OdO35z8IVY@heme> <1600084.u9aZAZ6IhU@borte.site> <2307131.v7vhvd2qzv@balthasar> <1759676.pVDMIEbC6q@borte.site> Date: Thu, 12 Apr 2012 10:29:12 +0200 In-Reply-To: <1759676.pVDMIEbC6q@borte.site> (Olav Pettershagen's message of "Wed, 11 Apr 2012 19:37:53 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) Precedence: bulk Mailing-List: contact opensuse-translation+help@opensuse.org; run by mlmmj X-Mailinglist: opensuse-translation List-Post: List-Help: List-Subscribe: List-Unsubscribe: List-Owner: List-Archive: X-MIME-Notice: attachments may have been removed from this message MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Virus-Scanned: by amavisd-new at localhost X-Scanned-By: ClamAV 0.97.3/14778/Thu Apr 12 05:43:13 2012 X-Original-To: mailinglist@michael-skiba.de X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on hermes.rz1.hosting-agency.net X-Spam-Level: X-Spam-Status: No, score=1.0 required=5.0 tests=AWL,BAYES_50 autolearn=disabled version=3.2.5 --=-=-= Olav Pettershagen writes: > I have checked out and updated from svn.opensuse.org (and translated) for > quite a while :), only not been able to commit translations. > > So I'm not really in a hurry. I'll ask Karl how to proceed one of these days. Just send us an _encrypted_ password, that you would like to use for the opensuse SVN server. To encrypt the password, you can use the attached bash script as follows: Usage: ./svn-password [] Examples: This example uses the current login name as "user-name": ./svn-password opensuse-i18n This example sets "foobar123" as "user-name": ./svn-password opensuse-i18n foobar123 Please, send the _encrypted_ password directly to Daniel (see cc: jdsn@suse.de). --=-=-= Content-Disposition: attachment; filename=svn-password #!/bin/bash # # (c) 2011 by J. Daniel Schmidt # if [ -z $1 ] then echo echo "Usage: $0 []" echo " svn-repo-name: The name of the svn repository." echo " user-name: The user name if different from current user name." echo exit 1 fi SVNREPO=$1 NNAME=${2:-$USER} SVNADMIN=jdsn@suse.de REALM="Authorization needed to access the ${SVNREPO} subversion repository" echo echo "Creating a password hash for user \"$NNAME\" and repo \"$SVNREPO\"" # create the hash and auth_file TEMPFILE=`mktemp ${SVNREPO}_svn_auth.temp.XXXXX` read -s -p "Please enter your password: " NEWPASSWD echo echo case ${SVNREPO} in opensuse-i18n | \ opensuse-doc ) (echo -n "${SVNREPO}: $NNAME:" ; echo -n $NEWPASSWD | perl -ne 'chomp; print crypt("$_", "\$1\$")."\n"') > ${TEMPFILE} ;; * ) (echo -n "$NNAME:$REALM:" && echo -n "$NNAME:$REALM:$NEWPASSWD" | md5sum | sed "s/ \+-$//" ) > ${TEMPFILE} ;; esac unset NEWPASSWD # send auth_file to svn-admin read -p "Do you have a local mailserver and should I send the svn_auth file to the SVN-admin? (y/N)" if [[ $REPLY = [yY] ]] then echo '' | mail -a ${TEMPFILE} -s "svn.opensuse.org auth for ${SVNREPO} for ${NNAME}" ${SVNADMIN} rm -v ${TEMPFILE} else echo echo "Ok, not sending." echo "--> Please write an eMail to ${SVNADMIN} and attach the file ${TEMPFILE}" fi --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable --=20 Karl Eichwalder SUSE LINUX Products GmbH R&D / Documentation Maxfeldstra=C3=9Fe 5 90409 N=C3=BCrnberg, Germany GF: Jeff Hawn, Jennifer Guild, Felix Imend=C3=B6rffer, HRB 16746 (AG N=C3= =BCrnberg) --=-=-=-- -- To unsubscribe, e-mail: opensuse-translation+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-translation+owner@opensuse.org