All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: avi@redhat.com, mtosatti@redhat.com, kvm@vger.kernel.org,
	ehabkost@redhat.com
Subject: Re: [PATCH] make-release: misc fixes
Date: Mon, 31 May 2010 22:04:12 +0300	[thread overview]
Message-ID: <20100531190412.GA6943@redhat.com> (raw)
In-Reply-To: <20100524131214.GA5872@redhat.com>

On Mon, May 24, 2010 at 04:12:14PM +0300, Michael S. Tsirkin wrote:
> This fixes /tmp usage in make-release script for security.
> Also, create output directory if it does not exist.
> This also adds a 'tarball' optin to specify output file name.
> Finally, remote output file before gzip to avoid prompt
> 'do you want to overwrite'.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

Ping. Please review/apply.

> ---
>  kvm/scripts/make-release |   13 ++++++++++---
>  1 files changed, 10 insertions(+), 3 deletions(-)
> 
> diff --git a/kvm/scripts/make-release b/kvm/scripts/make-release
> index 11d9c27..fdc402b 100755
> --- a/kvm/scripts/make-release
> +++ b/kvm/scripts/make-release
> @@ -1,7 +1,7 @@
>  #!/bin/bash -e
>  
>  usage() {
> -    echo "usage: $0 [--upload] [--formal] commit [name]"
> +    echo "usage: $0 [--upload] [--formal] commit [name] [tarball]"
>      exit 1
>  }
>  
> @@ -12,7 +12,7 @@ formal=
>  
>  releasedir=~/sf-release
>  [[ -z "$TMP" ]] && TMP="/tmp"
> -tmpdir="$TMP/qemu-kvm-make-release.$$"
> +tmpdir=`mktemp -d --tmpdir="$TMP" qemu-kvm-make-release.XXXXXXXXXX`
>  while [[ "$1" = -* ]]; do
>      opt="$1"
>      shift
> @@ -40,9 +40,15 @@ if [[ -z "$name" ]]; then
>      name="$commit"
>  fi
>  
> -tarball="$releasedir/$name.tar"
> +tarball="$3"
> +if [[ -z "$tarball" ]]; then
> +    tarball="$releasedir/$name.tar.gz"
> +fi
> +#strip trailing .gz if any
> +tarball=${tarball/%.gz/}
>  
>  cd "$(dirname "$0")"/../..
> +mkdir -p "$(dirname "$tarball")"
>  git archive --prefix="$name/" --format=tar "$commit" > "$tarball"
>  
>  mkdir -p "$tmpdir"
> @@ -59,6 +65,7 @@ if [[ -n "$formal" ]]; then
>      rm -rf "$tmpdir"
>  fi
>  
> +rm -f "$tarball.gz"
>  gzip -9 "$tarball"
>  tarball="$tarball.gz"
>  
> -- 
> 1.7.1.12.g42b7f

  reply	other threads:[~2010-05-31 19:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-24 13:12 [PATCH] make-release: misc fixes Michael S. Tsirkin
2010-05-31 19:04 ` Michael S. Tsirkin [this message]
2010-05-31 19:20 ` Marcelo Tosatti

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100531190412.GA6943@redhat.com \
    --to=mst@redhat.com \
    --cc=avi@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=mtosatti@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.