diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-02-04 02:42:25 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-02-04 02:42:25 -0500 |
commit | 4dfd08ed46c4ca6f40dac23d5105437c1f4ba03a (patch) | |
tree | 38e6f3de2cf4d05c1a0f2437a62b88ca3f05ea1a /tools | |
parent | ef8789ded2636f35d554cb9d620d8057591ca39a (diff) | |
download | vyos-cloud-init-4dfd08ed46c4ca6f40dac23d5105437c1f4ba03a.tar.gz vyos-cloud-init-4dfd08ed46c4ca6f40dac23d5105437c1f4ba03a.zip |
more removal of 'ec2init' string, replacement with cloud-init
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/make-dist-tarball | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/make-dist-tarball b/tools/make-dist-tarball index 840fe4c0..5269c88b 100755 --- a/tools/make-dist-tarball +++ b/tools/make-dist-tarball @@ -17,9 +17,9 @@ tag=${1} tmpd=$(mktemp -d ); trap "rm -Rf '${tmpd}'" 0 -out=${topdir}/ec2-init_${tag}.orig.tar.gz +out=${topdir}/cloud-init_${tag}.orig.tar.gz cd ${tmpd} && - bzr branch "${topdir}" ./ec2-init-${tag} && - tar czf "${out}" ec2-init-${tag}/ --exclude ec2-init-${tag}/.bzr && + bzr branch "${topdir}" ./cloud-init-${tag} && + tar czf "${out}" cloud-init-${tag}/ --exclude cloud-init-${tag}/.bzr && echo "wrote ${out}" |