+ echo '====== automated-ec2-builds [/tmp/automated-ec2-builds] ======' ====== automated-ec2-builds [/tmp/automated-ec2-builds] ====== + cd /tmp/automated-ec2-builds + bzr info Standalone tree (format: 2a) Location: branch root: . Related branches: parent branch: http://bazaar.launchpad.net/~ubuntu-on-ec2/vmbuilder/automated-ec2-builds/ + bzr version-info revision-id: ben.howard@canonical.com-20130129151125-fkmhuxi6eiv36uzg date: 2013-01-29 08:11:25 -0700 build-date: 2013-02-04 07:05:05 +0000 revno: 531 branch-nick: automated-ec2-builds + bzr log -p -r-1 ------------------------------------------------------------ revno: 531 committer: Ben Howard branch nick: automated-ec2-builds timestamp: Tue 2013-01-29 08:11:25 -0700 message: Fixed incorrect files names for motd update diff: === modified file 'vmbuilder-cloudimg-fixes' --- vmbuilder-cloudimg-fixes 2013-01-28 19:56:07 +0000 +++ vmbuilder-cloudimg-fixes 2013-01-29 15:11:25 +0000 @@ -85,14 +85,14 @@ EOF if dist_ge "${codename}" precise; then - cat >> "${rootd}/etc/update-motd.d/98-cloudguest" << EOF + cat >> "${rootd}/etc/update-motd.d/51-cloudguest" << EOF echo "" echo " Use Juju to deploy your cloud instances and workloads:" echo " https://juju.ubuntu.com/#cloud-${codename}" EOF fi -chmod +x "${rootd}/etc/update-motd.d/98-cloudguest" +chmod +x "${rootd}/etc/update-motd.d/51-cloudguest" #### END COMMON ARCH FUNCTIONS + echo '' + echo '====== ec2-publishing-scripts [/tmp/ec2-publishing-scripts] ======' ====== ec2-publishing-scripts [/tmp/ec2-publishing-scripts] ====== + cd /tmp/ec2-publishing-scripts + bzr info Standalone tree (format: unnamed) Location: branch root: . Related branches: parent branch: http://bazaar.launchpad.net/~ubuntu-on-ec2/ubuntu-on-ec2/ec2-publishing-scripts/ + bzr version-info revision-id: ben.howard@canonical.com-20130128213759-b9nvocpc2ikedbax date: 2013-01-28 14:37:59 -0700 build-date: 2013-02-04 07:05:06 +0000 revno: 500 branch-nick: ec2-publishing-scripts + bzr log -p -r-1 ------------------------------------------------------------ revno: 500 committer: Ben Howard branch nick: ec2-publishing-scripts timestamp: Mon 2013-01-28 14:37:59 -0700 message: Error, not fail on snapshot deletion. Addresses wonky regions which prevent deletions diff: === modified file 'clean-unused-snapshots' --- clean-unused-snapshots 2012-08-28 21:55:26 +0000 +++ clean-unused-snapshots 2013-01-28 21:37:59 +0000 @@ -189,7 +189,7 @@ debugp 1 "deleting $snap [$ts $size $state $desc]\n" if [ $dry_run -eq 0 ]; then xc2 delete-snapshot --region "$region" "$snap" || - fail "failed to delete $snap in $region [$state $desc]" + error "failed to delete $snap in $region [$state $desc]" else error delete-snapshot --region "$region" "$snap" fi + echo '' + echo '====== live-build [/tmp/live-build] ======' ====== live-build [/tmp/live-build] ====== + cd /tmp/live-build + bzr info Standalone tree (format: 1.9-rich-root) Location: branch root: . Related branches: parent branch: http://bazaar.launchpad.net/~ubuntu-on-ec2/live-build/cloud-images/ + bzr version-info revision-id: ben.howard@canonical.com-20130118173449-3qca5w3nem83i4w4 date: 2013-01-18 10:34:49 -0700 build-date: 2013-02-04 07:05:06 +0000 revno: 1857 branch-nick: live-build + bzr log -p -r-1 ------------------------------------------------------------ revno: 1857 committer: Ben Howard branch nick: live-build timestamp: Fri 2013-01-18 10:34:49 -0700 message: Removing zerofree requirement for building raw hdds diff: === modified file 'scripts/build/lb_binary_virtual-hdd-raw' --- scripts/build/lb_binary_virtual-hdd-raw 2013-01-18 16:18:34 +0000 +++ scripts/build/lb_binary_virtual-hdd-raw 2013-01-18 17:34:49 +0000 @@ -48,7 +48,6 @@ case "${LB_BINARY_FILESYSTEM}" in ext2|ext3|ext4) Check_package chroot/sbin/mkfs.${LB_BINARY_FILESYSTEM} e2fsprogs - Check_package chroot/usr/sbin/zerofree zerofree ;; esac fi + echo '' + echo '====== vmbuilder-0.11 [/tmp/vmbuilder-0.11] ======' ====== vmbuilder-0.11 [/tmp/vmbuilder-0.11] ====== + cd /tmp/vmbuilder-0.11 + bzr info Standalone tree (format: 2a) Location: branch root: . Related branches: parent branch: http://bazaar.launchpad.net/~ubuntu-on-ec2/vmbuilder/0.11a/ + bzr version-info revision-id: ben.howard@canonical.com-20120605221454-crv9cc4612f907lh date: 2012-06-05 16:14:54 -0600 build-date: 2013-02-04 07:05:06 +0000 revno: 398 branch-nick: vmbuilder-0.11 + bzr log -p -r-1 ------------------------------------------------------------ revno: 398 committer: Ben Howard branch nick: vmbuilder timestamp: Tue 2012-06-05 16:14:54 -0600 message: Fix for allow vmbuilder to run on 12.04 LTS. diff: === modified file 'VMBuilder/plugins/ubuntu/dapper.py' --- VMBuilder/plugins/ubuntu/dapper.py 2011-05-18 20:49:25 +0000 +++ VMBuilder/plugins/ubuntu/dapper.py 2012-06-05 22:14:54 +0000 @@ -157,18 +157,15 @@ self.vm.addpkg += ['openssh-server'] def mount_dev_proc(self): - run_cmd('mount', '--bind', '/dev', '%s/dev' % self.destdir) - self.vm.add_clean_cmd('umount', '%s/dev' % self.destdir, ignore_fail=True) - - run_cmd('mount', '--bind', '/dev/pts', '%s/dev/pts' % self.destdir) + run_cmd('mkdir', '-p', '%s/dev/pts' % self.destdir) + run_cmd('mount', '-t', 'devpts', 'devpts-live', '%s/dev/pts' % self.destdir) self.vm.add_clean_cmd('umount', '%s/dev/pts' % self.destdir, ignore_fail=True) - self.run_in_target('mount', '-t', 'proc', 'proc', '/proc') + run_cmd('mount', '-t', 'proc', 'proc-live', '%s/proc' % self.destdir) self.vm.add_clean_cmd('umount', '%s/proc' % self.destdir, ignore_fail=True) def unmount_dev_proc(self): run_cmd('umount', '%s/dev/pts' % self.destdir) - run_cmd('umount', '%s/dev' % self.destdir) run_cmd('sh', '-c', 'grep -q "$1" /proc/mounts || exit 0; umount "$1"', 'umount_binfmt', "%s/proc/sys/fs/binfmt_misc" % self.destdir) run_cmd('umount', '%s/proc' % self.destdir) + echo ''