[Bug 1449903] Re: package nginx-core 1.6.2-5ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-05-16 Thread Paul Sladen
*** This bug is a duplicate of bug 1447294 ***
https://bugs.launchpad.net/bugs/1447294

** This bug has been marked a duplicate of bug 1447294
   package nginx-full 1.6.2-5ubuntu3 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nginx in Ubuntu.
https://bugs.launchpad.net/bugs/1449903

Title:
  package nginx-core 1.6.2-5ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1449903/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1455766] Re: package nginx-core 1.6.2-5ubuntu3 failed to install/upgrade: subproces post-installation script geïnstalleerd gaf een foutwaarde 1 terug

2015-05-16 Thread Paul Sladen
*** This bug is a duplicate of bug 1447294 ***
https://bugs.launchpad.net/bugs/1447294

** This bug has been marked a duplicate of bug 1447294
   package nginx-full 1.6.2-5ubuntu3 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nginx in Ubuntu.
https://bugs.launchpad.net/bugs/1455766

Title:
  package nginx-core 1.6.2-5ubuntu3 failed to install/upgrade: subproces
  post-installation script geïnstalleerd  gaf een foutwaarde 1 terug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1455766/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 946754] Re: dnsmasq does not respect/watch '/etc/hosts' updates

2012-03-05 Thread Paul Sladen
Had a reply from Simon Kelly (upstream).  The worry is about race
conditions and reading /etc/hosts or resolv.conf after the 'mtime' has
been changed, but before the file has been completely written out
(dnsmasq already tries to backoff and schedule a re-read a couple of
seconds late if it finds an incomplete file).  The preferred solution is
for the process modifying the appropriate file to manually send:

  sudo killall -HUP dnsmasq

to the process.

Currently (on Ubuntu) dnsmasq is run as uid='nobody', so these needs
elevated privileges (which are needed anyway for editing those files).
This is okay for a human, but is less automatic than the previous
situation where /etc/hosts was being watched.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in Ubuntu.
https://bugs.launchpad.net/bugs/946754

Title:
  dnsmasq does not respect/watch '/etc/hosts' updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/946754/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 946754] Re: dnsmasq does not respect/watch '/etc/hosts' updates

2012-03-05 Thread Paul Sladen
(Workaround was introduced to Network Manager).

In the mean-time upstream are now looking at inotify support for
dnsmasq-2.61 to reduce the residual polling overhead in the longer-term
(will miss 2.60 as that's nearly out).

** Package changed: dnsmasq (Ubuntu) = network-manager (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in Ubuntu.
https://bugs.launchpad.net/bugs/946754

Title:
  dnsmasq does not respect/watch '/etc/hosts' updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/946754/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 946754] [NEW] dnsmasq does not respect/watch '/etc/hosts' updates

2012-03-04 Thread Paul Sladen
Public bug reported:

Network Manager now fires up a dedicate dnsmaq process for DNS
resolution.

This dnsmasq process does not notice changes to '/etc/hosts', requiring
one to jump through hops when this file is changed.

Ideally dnsmasq should purge itself when '/etc/hosts' is changed.

** Affects: dnsmasq (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in Ubuntu.
https://bugs.launchpad.net/bugs/946754

Title:
  dnsmasq does not respect/watch '/etc/hosts' updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/946754/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 946754] Re: dnsmasq does not respect/watch '/etc/hosts' updates

2012-03-04 Thread Paul Sladen
The manpage talks about:

 -T, --local-ttl=time
  When replying with information from /etc/hosts or the DHCP leases 
file dnsmasq by default sets the time-to-live field to zero,
  meaning that the requestor should not itself cache the 
information. This is the correct thing to do in almost all  situations.
  This  option  allows a time-to-live (in seconds) to be given for 
these replies. This will reduce the load on the server at the
  expense of clients using stale data under some circumstances.

it's actually being run as:

  /usr/sbin/dnsmasq --no-resolv --keep-in-foreground --cache-size=0
--bind-interfaces --pid-file=/var/run/sendsigs.omit.d/network-
manager.dnsmasq.pid --listen-address=127.0.0.1 --conf-file=/var/run/nm-
dns-dnsmasq.conf

with '/var/run/nm-dns-dnsmasq.conf' containing just:

  server=10.0.0.5

(ie, the upstream DNS server).

The manpage also mentions:

   --clear-on-reload
  Whenever /etc/resolv.conf is re-read, clear the DNS cache.  This 
is useful when new nameservers may have different  data  than
  that held in cache.

but this is for 'resolve.conf'.  This corresponds to the enum OPT_RELOAD
and ultimately gets used as:

   if (option_bool(OPT_RELOAD)  do_reload)
clear_cache_and_reload(now);

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in Ubuntu.
https://bugs.launchpad.net/bugs/946754

Title:
  dnsmasq does not respect/watch '/etc/hosts' updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/946754/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 697181] [NEW] DoS: Infinite loop processing 2.2250738585072011e-308

2011-01-04 Thread Paul Sladen
*** This bug is a security vulnerability ***

Public security bug reported:

Binary package hint: php5

Processing certain textual forms of MAX_FLOAT leads to an infinite
loop/hang/DoS:

  php -r print 2.2250738585072011e-308;

hangs indefinitely, whereas:

  php -r print 2.2250738585072010e-308;

returns immediately.

Confirmed for natty/php5-cli=5.3.3-1ubuntu11

** Affects: php
 Importance: Unknown
 Status: Unknown

** Affects: php5 (Ubuntu)
 Importance: Undecided
 Status: New

** Visibility changed to: Public

** Bug watch added: bugs.php.net/ #53632
   http://bugs.php.net/bug.php?id=53632

** Also affects: php via
   http://bugs.php.net/bug.php?id=53632
   Importance: Unknown
   Status: Unknown

** Description changed:

  Binary package hint: php5
  
  Processing certain textual forms of MAX_FLOAT leads to an infinite
  loop/hang/DoS:
  
-   php -r print 2.2250738585072011e-308;
+   php -r print 2.2250738585072011e-308;
  
  hangs indefinitely, whereas:
  
-   php -r print 2.2250738585072010e-308;
+   php -r print 2.2250738585072010e-308;
  
  returns immediately.
+ 
+ Confirmed for natty/php5-cli=5.3.3-1ubuntu11

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/697181

Title:
  DoS: Infinite loop processing 2.2250738585072011e-308

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 697181] Re: DoS: Infinite loop processing 2.2250738585072011e-308

2011-01-04 Thread Paul Sladen
** Also affects: php5 (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: php5 (Ubuntu Maverick)
   Importance: Undecided
   Status: New

** Also affects: php5 (Ubuntu Natty)
   Importance: Undecided
   Status: Confirmed

** Changed in: php5 (Ubuntu Maverick)
   Status: New = Confirmed

** Changed in: php5 (Ubuntu Lucid)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.
https://bugs.launchpad.net/bugs/697181

Title:
  DoS: Infinite loop processing 2.2250738585072011e-308

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 550691] Re: TypeError: int() argument must be a string or a number, not 'NoneType'

2010-04-20 Thread Paul Sladen
I thought we'd gone through this one:

   hexdump -C partitions.txt
    72 6f 6f 74 20 32 30 30  30 0a|root 2000.|

-- 
TypeError: int() argument must be a string or a number, not 'NoneType'
https://bugs.launchpad.net/bugs/550691
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 552566] [NEW] xen --part still broken

2010-03-31 Thread Paul Sladen
Public bug reported:

vmbuilder xen ubuntu \
--suite lucid --flavour virtual --arch amd64 \
--user ubuntu --name Ubuntu \
--components main,universe \
--addpkg openssh-server \
--part partitions.txt

2010-03-31 14:32:09,934 INFO: Calling hook: post_install
Traceback (most recent call last):
  File /usr/bin/vmbuilder, line 24, in module
cli.main()
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 115, 
in main
self.set_disk_layout(hypervisor)
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 229, 
in set_disk_layout
hypervisor.add_filesystem(elements[1], type=default_filesystem, 
filename=tmpfile, mntpnt=elements[0])
IndexError: list index out of range

$ hexdump -C partitions.txt
  72 6f 6f 74 20 32 30 30  30 0a 0a 0a  |root 2000...|

** Affects: vm-builder (Ubuntu)
 Importance: Undecided
 Status: New

-- 
xen --part still broken
https://bugs.launchpad.net/bugs/552566
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 551451] [NEW] TypeError: coercing to Unicode: need string or buffer, NoneType found

2010-03-30 Thread Paul Sladen
Public bug reported:

sudo vmbuilder xen ubuntu \
--suite lucid --flavour virtual --arch amd64 \
--part partitions.txt \
--user ubuntu --name Ubuntu \
--components main,universe \
--addpkg openssh-server

2010-03-30 07:25:00,509 INFO: Calling hook: preflight_check
2010-03-30 07:25:00,514 INFO: Calling hook: set_defaults
2010-03-30 07:25:00,515 INFO: Calling hook: bootstrap
2010-03-30 07:26:43,726 INFO: Calling hook: configure_os
2010-03-30 07:26:53,850 INFO: update-alternatives: error: no alternatives 
for rsh.
2010-03-30 07:26:54,070 INFO: update-alternatives: error: no alternatives 
for rlogin.
2010-03-30 07:26:54,291 INFO: update-alternatives: error: no alternatives 
for rcp.
2010-03-30 07:26:56,001 INFO: Creating SSH2 RSA key; this may take some 
time ...
2010-03-30 07:26:57,643 INFO: Creating SSH2 DSA key; this may take some 
time ...
2010-03-30 07:26:58,175 INFO: 
2010-03-30 07:26:58,177 INFO: Warning: Fake initctl called, doing nothing
2010-03-30 07:26:58,190 INFO: 
2010-03-30 07:26:58,190 INFO: Warning: Fake initctl called, doing nothing
2010-03-30 07:27:00,334 INFO: 
2010-03-30 07:27:00,335 INFO: Current default time zone: 'Etc/UTC'
2010-03-30 07:27:00,349 INFO: Local time is now:  Tue Mar 30 06:27:00 
UTC 2010.
2010-03-30 07:27:00,349 INFO: Universal Time is now:  Tue Mar 30 06:27:00 
UTC 2010.
2010-03-30 07:27:00,349 INFO: 
2010-03-30 07:27:04,436 INFO: Calling hook: post_install
2010-03-30 07:27:04,442 INFO: Calling hook: preflight_check
2010-03-30 07:27:04,443 INFO: Calling hook: configure_networking
2010-03-30 07:27:04,459 INFO: Calling hook: configure_mounting
2010-03-30 07:27:04,474 INFO: Calling hook: mount_partitions
2010-03-30 07:27:04,475 INFO: Mounting target filesystems
2010-03-30 07:27:04,475 INFO: Creating filesystem: /, size: 2, dummy: 
False
Traceback (most recent call last):
  File /usr/bin/vmbuilder, line 24, in module
cli.main()
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 116, 
in main
hypervisor.install_os()
  File /usr/lib/python2.6/dist-packages/VMBuilder/hypervisor.py, line 64, in 
install_os
self.call_hooks('mount_partitions', self.chroot_dir)
  File /usr/lib/python2.6/dist-packages/VMBuilder/distro.py, line 66, in 
call_hooks
call_hooks(self, *args, **kwargs)
  File /usr/lib/python2.6/dist-packages/VMBuilder/util.py, line 165, in 
call_hooks
getattr(context, func, log_no_such_method)(*args, **kwargs)
  File /usr/lib/python2.6/dist-packages/VMBuilder/hypervisor.py, line 82, in 
mount_partitions
fs.create()
  File /usr/lib/python2.6/dist-packages/VMBuilder/disk.py, line 332, in create
if not os.path.exists(self.filename):
  File /usr/lib/python2.6/genericpath.py, line 18, in exists
st = os.stat(path)
TypeError: coercing to Unicode: need string or buffer, NoneType found

dpkg -l python-vm-builder
python-vm-builder   0.12.3-0ubuntu1

** Affects: vm-builder (Ubuntu)
 Importance: Undecided
 Status: New

-- 
TypeError: coercing to Unicode: need string or buffer, NoneType found
https://bugs.launchpad.net/bugs/551451
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 551451] Re: TypeError: coercing to Unicode: need string or buffer, NoneType found

2010-03-30 Thread Paul Sladen
Altering whether 'partitions.txt' has a newline at the end gives a
different traceback:

ubu...@ubuntu:~/build$ cat partitions.txt
root 2

ubu...@ubuntu:~/build$

If the newline is added, then the result is:

2010-03-30 07:32:57,831 INFO: Calling hook: post_install
Traceback (most recent call last):
  File /usr/bin/vmbuilder, line 24, in module
cli.main()
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 115, 
in main
self.set_disk_layout(hypervisor)
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 228, 
in set_disk_layout
hypervisor.add_filesystem(elements[1], type=default_filesystem, 
mntpnt=elements[0])
IndexError: list index out of range
ubu...@ubuntu:~/build$ cat partitions.txt
root 2

-- 
TypeError: coercing to Unicode: need string or buffer, NoneType found
https://bugs.launchpad.net/bugs/551451
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 551474] [NEW] Should Recommends: kvm-pxe extension BIOS blobs so that PXE just works

2010-03-30 Thread Paul Sladen
Public bug reported:

Binary package hint: qemu-kvm

The network extension BIOS blobs built from the etherboot source are
shipped in the separate 'kvm-pxe' package, which probably should be
installed by default so that PXE booting works out-of-the-box on virtual
machines.

Bumping 'kvm-pxe' to Recommends: (from Suggests:) in the 'qemu-common'
binary package would achieve this.

** Affects: qemu-kvm (Ubuntu)
 Importance: Wishlist
 Status: New

** Changed in: qemu-kvm (Ubuntu)
   Importance: Undecided = Wishlist

** Description changed:

  Binary package hint: qemu-kvm
  
  The network extension BIOS blobs built from the etherboot source are
  shipped in the separate 'kvm-pxe' package, which probably should be
  installed by default so that PXE booting works out-of-the-box on virtual
  machines.
  
- Bumping 'kvm-pxe' to Recommends: (from Suggests:) would achieve this.
+ Bumping 'kvm-pxe' to Recommends: (from Suggests:) in the 'qemu-common'
+ binary package would achieve this.

-- 
Should Recommends: kvm-pxe  extension BIOS blobs so that PXE just works
https://bugs.launchpad.net/bugs/551474
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 517067] Re: Using virtio for block devices makes disks and partitions disappear in KVM/QEMU (using vmbuilder and libvirt)

2010-03-30 Thread Paul Sladen
Surely the problem here, is that for the standard method of mount-by-
UUID is being overridden?

If mount-by-UUID is in use then it doesn't matter whether a device shows
up as /dev/{sd,hd,hv}*

-- 
Using virtio for block devices makes disks and partitions disappear in KVM/QEMU 
(using vmbuilder and libvirt)
https://bugs.launchpad.net/bugs/517067
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 550680] Re: --part fails on trailing newline

2010-03-30 Thread Paul Sladen
Latest lucid/head (0.12.3 currently).

-- 
--part fails on trailing newline
https://bugs.launchpad.net/bugs/550680
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 531409] Re: vmbuilder xen ubuntu completely borked

2010-03-29 Thread Paul Sladen
** Also affects: ubuntu
   Importance: Undecided
   Status: New

** Package changed: ubuntu = vm-builder (Ubuntu)

-- 
vmbuilder xen ubuntu completely borked
https://bugs.launchpad.net/bugs/531409
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 550689] [NEW] vmbuilder: error: no such option: --firstlogin

2010-03-29 Thread Paul Sladen
Public bug reported:

Usage: vmbuilder hypervisor distro [options]

vmbuilder: error: no such option: --firstlogin

** Affects: vmbuilder
 Importance: Undecided
 Status: New

** Affects: vm-builder (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: vmbuilder
   Importance: Undecided
   Status: New

-- 
vmbuilder: error: no such option: --firstlogin
https://bugs.launchpad.net/bugs/550689
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 550687] [NEW] vmbuilder: error: no such option: --firstboot

2010-03-29 Thread Paul Sladen
Public bug reported:

Usage: vmbuilder hypervisor distro [options]

vmbuilder: error: no such option: --firstboot

** Affects: vmbuilder
 Importance: Undecided
 Status: New

** Affects: vm-builder (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: vmbuilder
   Importance: Undecided
   Status: New

-- 
vmbuilder: error: no such option: --firstboot
https://bugs.launchpad.net/bugs/550687
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 550691] [NEW] TypeError: int() argument must be a string or a number, not 'NoneType'

2010-03-29 Thread Paul Sladen
Public bug reported:

Traceback (most recent call last):
  File /usr/bin/vmbuilder, line 24, in module
cli.main()
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 105, 
in main
self.set_disk_layout(hypervisor)
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 203, 
in set_disk_layout
hypervisor.add_filesystem(elements[1], default_filesystem, mntpnt='/')
  File /usr/lib/python2.6/dist-packages/VMBuilder/hypervisor.py, line 51, in 
add_filesystem
fs = Filesystem(self, *args, **kwargs)
  File /usr/lib/python2.6/dist-packages/VMBuilder/disk.py, line 324, in 
__init__
self.set_type(type)
  File /usr/lib/python2.6/dist-packages/VMBuilder/disk.py, line 415, in 
set_type
if int(type) == type:
TypeError: int() argument must be a string or a number, not 'NoneType'

** Affects: vmbuilder
 Importance: Undecided
 Status: New

** Affects: vm-builder (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: vmbuilder
   Importance: Undecided
   Status: New

-- 
TypeError: int() argument must be a string or a number, not 'NoneType'
https://bugs.launchpad.net/bugs/550691
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 550666] [NEW] AttributeError: 'SettingGroup' object has no attribute 'add_option'

2010-03-28 Thread Paul Sladen
Public bug reported:

$ sudo ./build.sh 
Traceback (most recent call last):
  File /usr/bin/vmbuilder, line 24, in module
cli.main()
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 59, in 
main
hypervisor, distro = self.handle_args(optparser, sys.argv[1:])
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 160, 
in handle_args
hypervisor = VMBuilder.get_hypervisor(args[0])(distro)
  File /usr/lib/python2.6/dist-packages/VMBuilder/hypervisor.py, line 32, in 
__init__
super(Hypervisor, self).__init__()
  File /usr/lib/python2.6/dist-packages/VMBuilder/distro.py, line 30, in 
__init__
super(Context, self).__init__(self)
  File /usr/lib/python2.6/dist-packages/VMBuilder/plugins/__init__.py, line 
46, in __init__
self.register_options()
  File /usr/lib/python2.6/dist-packages/VMBuilder/plugins/xen/vm.py, line 34, 
in register_options
group.add_option('--xen-kernel', metavar='PATH', help='Path to the kernel 
to use (e.g.: /boot/vmlinux-2.6.27-7-server). Default depends on distribution 
and suite')
AttributeError: 'SettingGroup' object has no attribute 'add_option'

...as the Python API changed?

** Affects: vm-builder (Ubuntu)
 Importance: Undecided
 Status: New

-- 
AttributeError: 'SettingGroup' object has no attribute 'add_option'
https://bugs.launchpad.net/bugs/550666
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 550675] [NEW] AttributeError: 'Xen' object has no attribute 'add_filesystem'

2010-03-28 Thread Paul Sladen
Public bug reported:

Run with default settings:

sudo vmbuilder xen ubuntu
2010-03-29 05:36:11,620 INFO: Calling hook: preflight_check
2010-03-29 05:36:11,626 INFO: Calling hook: set_defaults
2010-03-29 05:36:11,626 INFO: Calling hook: bootstrap
2010-03-29 05:37:51,886 INFO: Calling hook: configure_os
2010-03-29 05:37:59,468 INFO: Calling hook: post_install
Traceback (most recent call last):
  File /usr/bin/vmbuilder, line 24, in module
cli.main()
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 105, 
in main
self.set_disk_layout(hypervisor)
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 178, 
in set_disk_layout
hypervisor.add_filesystem(size='%dM' % rootsize, type='ext3', mntpnt='/')
AttributeError: 'Xen' object has no attribute 'add_filesystem'

Ideally this should not happen.

** Affects: vm-builder (Ubuntu)
 Importance: Undecided
 Status: New

-- 
AttributeError: 'Xen' object has no attribute 'add_filesystem'
https://bugs.launchpad.net/bugs/550675
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 536942] Re: --firstboot option broken in 0.12.2-0ubuntu3

2010-03-28 Thread Paul Sladen
** Changed in: vm-builder (Ubuntu)
   Importance: Medium = High

** Changed in: vm-builder (Ubuntu)
Milestone: None = ubuntu-10.04

-- 
--firstboot option broken in 0.12.2-0ubuntu3
https://bugs.launchpad.net/bugs/536942
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 429872] [NEW] /sbin/apparmor_parser: ... Profile doesn't conform to protocol

2009-09-15 Thread Paul Sladen
Public bug reported:

Binary package hint: tcpdump

/sbin/apparmor_parser: Unable to replace 
/usr/share/gdm/guest-session/Xsession.  Profile doesn't conform to protocol
/sbin/apparmor_parser: Unable to replace /usr/bin/evince.  Profile doesn't 
conform to protocol
/sbin/apparmor_parser: Unable to replace /sbin/dhclient3.  Profile doesn't 
conform to protocol
/sbin/apparmor_parser: Unable to replace /usr/sbin/tcpdump.  Profile doesn't 
conform to protocol
/sbin/apparmor_parser: Unable to replace 
/usr/share/gdm/guest-session/Xsession.  Profile doesn't conform to protocol
/sbin/apparmor_parser: Unable to replace /sbin/dhclient3.  Profile doesn't 
conform to protocol
/sbin/apparmor_parser: Unable to replace /usr/lib/cups/backend/cups-pdf.  
Profile doesn't conform to protocol

** Affects: cups-pdf (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: dhcp3 (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: evince (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: gdm-guest-session (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: tcpdump (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: gdm-guest-session (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: evince (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: dhcp3 (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: cups-pdf (Ubuntu)
   Importance: Undecided
   Status: New

** Description changed:

  Binary package hint: tcpdump
  
  /sbin/apparmor_parser: Unable to replace 
/usr/share/gdm/guest-session/Xsession.  Profile doesn't conform to protocol
  /sbin/apparmor_parser: Unable to replace /usr/bin/evince.  Profile doesn't 
conform to protocol
  /sbin/apparmor_parser: Unable to replace /sbin/dhclient3.  Profile doesn't 
conform to protocol
  /sbin/apparmor_parser: Unable to replace /usr/sbin/tcpdump.  Profile 
doesn't conform to protocol
  /sbin/apparmor_parser: Unable to replace 
/usr/share/gdm/guest-session/Xsession.  Profile doesn't conform to protocol
  /sbin/apparmor_parser: Unable to replace /sbin/dhclient3.  Profile doesn't 
conform to protocol
+ /sbin/apparmor_parser: Unable to replace /usr/lib/cups/backend/cups-pdf.  
Profile doesn't conform to protocol

-- 
/sbin/apparmor_parser: ... Profile doesn't conform to protocol
https://bugs.launchpad.net/bugs/429872
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs