[openstack-dev] [TripleO] fix poor tarball support in source-repositories

2014-08-15 Thread Brownell, Jonathan C (Corvallis)
The current DIB element support for downloading tarballs via "source-repository" allows an entry in the following form: tar Today, this feature is currently used only by the mysql DIB element. You can see how it's used here: https://github.com/openstack/tripleo-image-elements/blob/master/ele

Re: [openstack-dev] [TripleO] fix poor tarball support in source-repositories

2014-08-15 Thread Clint Byrum
Excerpts from Brownell, Jonathan C (Corvallis)'s message of 2014-08-15 08:11:18 -0700: > The current DIB element support for downloading tarballs via > "source-repository" allows an entry in the following form: > > tar > > Today, this feature is currently used only by the mysql DIB element.

Re: [openstack-dev] [TripleO] fix poor tarball support in source-repositories

2014-08-15 Thread Brownell, Jonathan C (Corvallis)
k-dev] [TripleO] fix poor tarball support in source-repositories Excerpts from Brownell, Jonathan C (Corvallis)'s message of 2014-08-15 08:11:18 -0700: > The current DIB element support for downloading tarballs via > "source-repository" allows an entry in the following fo

Re: [openstack-dev] [TripleO] fix poor tarball support in source-repositories

2014-08-16 Thread Jyoti Ranjan
#x27;ll prepare a patch next week to make this happen. > > -JB > > -Original Message- > From: Clint Byrum [mailto:cl...@fewbar.com] > Sent: Friday, August 15, 2014 12:58 PM > To: openstack-dev > Subject: Re: [openstack-dev] [TripleO] fix poor tarball support in > so

Re: [openstack-dev] [TripleO] fix poor tarball support in source-repositories

2014-08-16 Thread Clint Byrum
Excerpts from Jyoti Ranjan's message of 2014-08-16 00:57:52 -0700: > We will have to be little bit cautious in using glob because of its > inherent usage pattern. For e.g. the file starting with . will not get > matched. > That is a separate bug, but I think the answer to that is to use rsync ins

Re: [openstack-dev] [TripleO] fix poor tarball support in source-repositories

2014-08-18 Thread Derek Higgins
On 15/08/14 20:57, Clint Byrum wrote: > Excerpts from Brownell, Jonathan C (Corvallis)'s message of 2014-08-15 > 08:11:18 -0700: >> The current DIB element support for downloading tarballs via >> "source-repository" allows an entry in the following form: >> >> tar >> >> Today, this feature is

Re: [openstack-dev] [TripleO] fix poor tarball support in source-repositories

2014-08-18 Thread Robert Collins
On 16 August 2014 03:11, Brownell, Jonathan C (Corvallis) wrote: > The current DIB element support for downloading tarballs via > "source-repository" allows an entry in the following form: > > tar > > Today, this feature is currently used only by the mysql DIB element. You can > see how it's

Re: [openstack-dev] [TripleO] fix poor tarball support in source-repositories

2014-08-18 Thread Gregory Haynes
Excerpts from Clint Byrum's message of 2014-08-16 14:33:20 +: > That is a separate bug, but I think the answer to that is to use rsync > instead of mv and globs. So this: > > mv $tmp/./* $destdir > > becomes this: > > rsync --remove-source-files $tmp/. $destdir > +1 on this approac