diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-06-29 16:37:05 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-06-29 16:37:05 -0400 |
commit | 9bb44707c1ae45574a83ea1409d53b762db912c9 (patch) | |
tree | a31645705eadd1d61441f115682170f21c314f2c /packages | |
parent | 3795d9efbddc04ebdc193b414b3a73c36660e81a (diff) | |
download | vyos-cloud-init-9bb44707c1ae45574a83ea1409d53b762db912c9.tar.gz vyos-cloud-init-9bb44707c1ae45574a83ea1409d53b762db912c9.zip |
packages/bddeb: fix broken bddeb
needed to import glob, and use os.symlink, not util.symlink.
Also, here made the 'tar' verbose. if '-v' option given.
Diffstat (limited to 'packages')
-rwxr-xr-x | packages/bddeb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/bddeb b/packages/bddeb index b10f5a8e..eeb64434 100755 --- a/packages/bddeb +++ b/packages/bddeb @@ -3,6 +3,7 @@ import os import shutil import sys +import glob # Use the util functions from cloudinit possible_topdir = os.path.normpath(os.path.join(os.path.abspath( @@ -123,7 +124,7 @@ def main(): util.abs_join(tdir, tar_fn), '-C', util.abs_join(tdir, 'cloud-init')] cmd.extend(os.listdir(util.abs_join(tdir, 'cloud-init'))) - util.subp(cmd) + util.subp(cmd, capture=capture) shutil.copy(util.abs_join(tdir, tar_fn), tar_fn) print("Wrote out archive %r" % (util.abs_join(tar_fn))) @@ -143,7 +144,7 @@ def main(): if fn.endswith('_all.deb'): # Add in the local link util.del_file('cloud-init_all.deb') - util.symlink(base_fn, 'cloud-init_all.deb') + os.symlink(base_fn, 'cloud-init_all.deb') return 0 |