[Bug 952185] Re: ~/.pam_environment not parsed by default

2013-03-12 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/precise-proposed/lightdm

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

Title:
  ~/.pam_environment not parsed by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/lightdm/+bug/952185/+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 1074798]

2013-03-12 Thread Damien Miller
retarget to openssh-6.3

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

Title:
  ssh-copy-id cannot handle spaces in usernames

To manage notifications about this bug go to:
https://bugs.launchpad.net/openssh/+bug/1074798/+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 322214] Re: php (via libedit using_history()) incorrectly opens stdin

2013-03-12 Thread Bug Watch Updater
** Changed in: libedit (Debian)
   Status: Confirmed = Fix Released

-- 
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/322214

Title:
  php (via libedit using_history()) incorrectly opens stdin

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libedit/+bug/322214/+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 1097691] Re: (CVE-2012-5977) AST-2012-015 Denial of Service Through Exploitation of Device State Caching

2013-03-12 Thread Bug Watch Updater
** Changed in: asterisk (Debian)
   Status: Fix Released = New

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

Title:
  (CVE-2012-5977) AST-2012-015 Denial of Service Through Exploitation of
  Device State Caching

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/asterisk/+bug/1097691/+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 1154039] [NEW] update MySQL 5.1.68

2013-03-12 Thread cybernet
Public bug reported:

as lucid life comes to an end, it would nice to have at least the last version 
of mysql 5.1.x
especially with lots of InnoDB fixes ...

Bugs Fixed

InnoDB; Performance: Some data structures related to undo logging could
be initialized unnecessarily during a query, although they were only
needed under specific conditions. (Bug #14676084)

InnoDB; Performance: Optimized read operations for compressed tables by
skipping redundant tests. The check for whether any related changes
needed to be merged from the insert buffer was being called more often
than necessary. (Bug #14329288, Bug #65886)

InnoDB; Performance: Immediately after a table was created, a query
against it would not use a loose index scan. The same query might use a
loose index scan following an ALTER TABLE on the table. The fix improves
the accuracy of the cost estimate for queries involving the grouping
functions min() and max(), and prevents the query plan from being
changed by the ALTER TABLE statement. (The more stable query plan might
or might not use a loose index scan.) (Bug #14200010)

InnoDB; Partitioning: Previously, when attempting to optimize one or
more partitions of a partitioned table that used a storage engine that
does not support partition-level OPTIMIZE, such as InnoDB, MySQL
reported Table does not support optimize, doing recreate + analyze
instead, then re-created the entire table, but did not actually analyze
it. Now in such cases, the warning message is, Table does not support
optimize on partitions. All partitions will be rebuilt and analyzed. In
addition, the entire table is analyzed after first being rebuilt. (Bug
#11751825)

InnoDB: The status variable Innodb_buffer_pool_read_ahead_evicted could
show an inaccurate value, higher than expected, because some pages in
the buffer pool were incorrectly considered as being brought in by read-
ahead requests. (Bug #15859402, Bug #67476)

InnoDB: Creating an index on a CHAR column could fail for a table with a
character set with varying length, such as UTF-8, if the table was
created with the ROW_FORMAT=REDUNDANT clause. (Bug #15874001)

InnoDB: If the server crashed at a precise moment during an ALTER TABLE
operation that rebuilt the clustered index for an InnoDB table, the
original table could be inaccessible afterward. An example of such an
operation is ALTER TABLE ... ADD PRIMARY KEY The fix preserves the
original table if the server halts during this operation. You might
still need to rename the .ibd file manually to restore the original
table contents: in MySQL 5.6 and higher, rename from #sql-
ib$new_table_id.ibd to table_name.ibd within the database directory;
prior to MySQL 5.6, the temporary file to rename is table_name#1 or #2.
(Bug #14669848)

InnoDB: An error at the filesystem level, such as too many open files,
could cause an unhandled error during an ALTER TABLE operation. The
error could be accompanied by Valgrind warnings, and by this assertion
message:

Assertion `! is_set()' failed.
mysqld got signal 6 ; 
(Bug #14628410, Bug #16000909)

InnoDB: During shutdown, with the innodb_purge_threads configuration
option set greater than 1, the server could halt prematurely with this
error:

mysqld got signal 11
A workaround was to increase innodb_log_file_size and set 
innodb_purge_threads=1. The fix was backported to MySQL 5.5 and 5.1, although 
those versions do not have the innodb_purge_threads configuration option so the 
error was unlikely to occur. (Bug #14234028)

InnoDB: The value of the innodb_version variable was not updated
consistently for all server releases for the InnoDB Plugin in MySQL 5.1,
and the integrated InnoDB component in MySQL 5.5, 5.6, and higher. Since
InnoDB and MySQL Server development cycles are fully integrated and
synchronized, now the value returned by the innodb_version variable is
the same as for the version variable. (Bug #13463493, Bug #63435)

Partitioning: When used with a table having multiple columns in its
primary key, but partitioned by KEY using a column that was not part of
the primary key as the partitioning column, a query using an aggregate
function and DISTINCT such as SELECT SUM(DISTINCT pk_column_1) FROM
table WHERE pk_column_2 = constant was not handled correctly. (Bug
#14845133)

References: See also Bug #14495351. This bug was introduced by Bug
#13025132.

Replication: Repeated execution of CHANGE MASTER TO statements using
invalid MASTER_LOG_POS values could lead to errors and possibly a crash
on the slave. Now in such cases, the statement fails with a clear error
message. (Bug #11764602, Bug #57454)

Replication: If the disk becomes full while writing to the binary log,
the server hangs until space is freed up manually. It was possible after
this was done for the MySQL server to fail, due to an internal status
value being set when not needed. Now in such cases, rather than trying
to set this status, a warning is written in the error log instead. (Bug
#11753923, Bug #45449)

msdos : Dynamic 

[Bug 813773] Re: Juju should have security rules/acls for every path in zk

2013-03-12 Thread Kapil Thangavelu
** Changed in: juju
Milestone: 0.7 = 0.8

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

Title:
  Juju should have security rules/acls for every path in zk

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/813773/+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


[Blueprint servercloud-r-lxc] LXC work for R

2013-03-12 Thread Serge Hallyn
Blueprint changed by Serge Hallyn:

Work items changed:
  Work items:
  [serge-hallyn] Send user namespace delta to kernel-team ASAP: DONE
  [serge-hallyn] Post syslog namespace design wiki page: DONE
  [serge-hallyn] Send syslog namespace prototype to lkml: DONE
  [serge-hallyn] Send syslog namespace description to kernel-team ASAP: DONE
  [serge-hallyn] Add set_cgroup_item() and get_cgroup_item() to C API: DONE
  [daniel-lezcano] Improved monitor notification support: TODO
  [stgraber] Fix lxc-ls (re-write using api): DONE
- [serge-hallyn] lxc-create or template option to specify userns mapping: TODO
+ [serge-hallyn] lxc-create or template option to specify userns mapping: 
POSTPONED
  [serge-hallyn] push user namespace lxc delta upstream: DONE
  [serge-hallyn] add config options for loglevel and output file: DONE
  [serge-hallyn] drop lxccontainer.log default logging in api: DONE
  [serge-hallyn] lxc-create - set a default log file in 
/var/log/lxc/$container: DONE
  [serge-hallyn] lxc.autodev: push lxc patch upstream: DONE
  [serge-hallyn] lxc.autodev: push lxc patch into package: DONE
  [serge-hallyn] lxc.autodev: push mountall patch into package: DONE
- [serge-hallyn] list broken functionality in ubuntu container in user 
namespace: TODO
- [serge-hallyn] improve ubuntu container experience in user namespace: TODO
+ [serge-hallyn] list broken functionality in ubuntu container in user 
namespace: POSTPONED
+ [serge-hallyn] improve ubuntu container experience in user namespace: 
POSTPONED
  [serge-hallyn] add config option for RLIMIT_NPROC in userns container: 
POSTPONED
  [stgraber] add (not container) to upstart jobs which just fail: DONE
  [stgraber] write tool to pass devices into container: DONE
  [stgraber] create a separate package for templates: DONE
  [stgraber] have lxc-create record the name of template used in container 
config file for debugging: DONE
  [stgraber] support templates outside of $templatedir (pushed to git): DONE
  [stgraber] investigate what's needed to support containers outside of 
/var/lib/lxc (part of the scheduled API work): DONE
  [serge-hallyn] test apparmor profile stacking; implement any lxc changes 
needed to support it: BLOCKED
  [stgraber] rebase staging branch on upstream master: DONE
  [serge-hallyn] test attach support in userns kernel; shout if anything 
missing: DONE
  [daniel-lezcano] investigate/use http://lxc.sourceforge.net/download/procfs 
to filter /proc/{cpuinfo,meminfo,etc}: TODO
  [stgraber] investigate: does dnsmasq save mac-ip across host reboots? (it 
does): DONE
  [stgraber] Port arkose to python3 (and make it pep8 clean): DONE
  [stgraber] Port arkose to python3-lxc: BLOCKED
  [stgraber] Port auto-dist-upgrader to python3-lxc: DONE
  [stgraber] Tweak the tests to ensure auto-dist-upgrader on LXC gives the same 
results as on kvm: DONE
  [stgraber] Check what it'd take to make lxc work fine when 
creating/starting/stopping containers in parallel (improved locking of 
templates): DONE
  [stgraber] Add code to detect and install langpacks in containers (at least 
-base-en): DONE
  [stgraber] Get LXC into main: INPROGRESS
  [ebiederm] Push current userns patchset upstream: DONE
- [ebiederm] Add support for tmpfs mounts in userns: TODO
+ [ebiederm] Add support for tmpfs mounts in userns: POSTPONED

-- 
LXC work for R
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-lxc

-- 
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 955576] Re: 'local:' services not started on reboot

2013-03-12 Thread Kapil Thangavelu
** Changed in: juju
Milestone: None = 0.8

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

Title:
  'local:' services not started on reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/955576/+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 1153626] Re: Multiple Interfaces and IPs not detected in AWS VPC

2013-03-12 Thread Scott Moser
** Also affects: cloud-init
   Importance: Undecided
   Status: New

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

Title:
  Multiple Interfaces and IPs not detected in AWS VPC

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1153626/+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 966577] Re: add explicit egress 'owner' rule on non-bootstrapping nodes to require root access to zookeeper

2013-03-12 Thread Kapil Thangavelu
** Changed in: juju
Milestone: 0.7 = 0.8

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

Title:
  add explicit egress 'owner' rule on non-bootstrapping nodes to require
  root access to zookeeper

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/966577/+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 1004162] Re: Samba won't change from wired to wireless NIC in same session

2013-03-12 Thread Scott Moore
Thank you for the reply. I'm sorry it took so long to get back to you.
As I've gotten into ISO testing I'm sure to be on top of these bug
reports as well. It appears the problem has resolved itself. I'll try to
be more careful and consult the forums first before I submit a bug
report. Thanks!

** Changed in: samba (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  Samba won't change from wired to wireless NIC in same session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1004162/+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 1144108] Re: Unable to create instances due to QueuePool limit

2013-03-12 Thread Jacek N
** Changed in: nova (Ubuntu)
   Status: Incomplete = Confirmed

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

Title:
  Unable to create instances due to QueuePool limit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1144108/+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


[Blueprint servercloud-r-maas-next-steps] MAAS next steps

2013-03-12 Thread Andres Rodriguez
Blueprint changed by Andres Rodriguez:

Work items changed:
  Work items:
  [andreserl] SRU django 1.4 GenericIpAddressField to 1.3 for 12.04 (LP: 
#1081391): POSTPONED
  [andreserl] SRU django 1.4 prefetch_related to 1.3 for 12.04 (LP: #1081388): 
DONE
  [andreserl] SRU django 1.4 upstream bug bug 15496 to 12.04 (LP: #1081392): 
DONE
- [andreserl] SRU 12.10-stabilization to Quantal: TODO
- [andreserl] SRU 12.10-stabilization to Precise: TODO
+ [andreserl] SRU 12.10-stabilization to Quantal: INPROGRESS
+ [andreserl] SRU 12.10-stabilization to Precise: INPROGRESS
  [andreserl] SRU python-tx-tftp (0.1~bzr31-0ubuntu7) to Quantal (LP: 
#1068843): DONE
  [andreserl] SRU python-tx-tftp to Precise: DONE
  [andreserl] SRU yui3 to Precise (LP: #1084141): POSTPONED
  [andreserl] SRU libjs-raphael to Precise (LP: #1084146): POSTPONED
  [andreserl] SRU isc-dhcp apparmor fixes from quantal to precise (LP: 
#1049177): DONE
  [andreserl] SRU Raring features to Quantal: BLOCKED
  [andreserl] SRU Raring features to Precise: BLOCKED
  [andreserl] Bug #1073462 fence_cdu power type is missing: DONE
  [andreserl] Bug #1064224 IPMI detection ends up with power_address of 
0.0.0.0: DONE
  [andreserl] Bug #1064527 detect_ipmi needs improvement. detects non-existant 
device in nested kvm: TODO
  [andreserl] maas-ipmi-autodetect and maas-signal should be shipped with MAAS: 
TODO
- [maas-maintainers] Bug #975454complete documentation and man pages: 
TODO
+ [maas-maintainers] Bug #975454complete documentation and man pages: 
DONE
  [maas-maintainers] Bug #1044503   kernel command line is not easily 
customizable: DONE
  [maas-maintainers] Bug #1066775   Main page slow to load with many nodes: 
DONE
  [maas-maintainers] Bug #1068843   maas-cluster-controller doesn't have 
images for provisioning: DONE
  [maas-maintainers] Bug #1069734   Filestorage is unique to each appserver 
instance: DONE
  [maas-maintainers] Bug #1069850   import_pxe_files does not include 
quantal: DONE
  [maas-maintainers] Bug #1070522   maas-cli nodes new incomplete 
documentation: DONE
  [maas-maintainers] Bug #1070765   DNS forward zone ends up with 
nonsensical entries: DONE
  [maas-maintainers] Bug #1070774   The hostname of a node can still be 
changed once the node is in use: DONE
  [maas-maintainers] Bug #1070775   The zone name (attached to a cluster 
controller) can still be changed when it contains in-use nodes and DNS is 
managed.: DONE
  [maas-maintainers] Bug #1075597   Duplicated prefix in the url used by 
the CLI: DONE
  [maas-maintainers] Bug #1034318   API calls that return a node leak 
private data: DONE
  [maas-maintainers] Bug #1059645   URI in API description wrong when 
accessing machine via alternative interface: DONE
  [maas-maintainers] Bug #1069603   Error in log when using 'Start node' 
button: MAASAPINotFound: No user data available for this node.: DONE
  [maas-maintainers] define supported release combination matrix: TODO

-- 
MAAS next steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-maas-next-steps

-- 
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 1100920] Re: In Ubuntu 12.10, the legacy 'user' cloud-config option is not handled properly

2013-03-12 Thread Scott Moser
This change made it into 0.7.2~bzr795-0ubuntu1 but it is not listed in
the changelog.


** Changed in: cloud-init (Ubuntu Raring)
   Status: Triaged = Fix Released

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

Title:
  In Ubuntu 12.10, the legacy 'user' cloud-config option is not handled
  properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1100920/+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 1044503] Re: kernel command line is not easily customizable

2013-03-12 Thread Andres Rodriguez
** Changed in: maas (Ubuntu Raring)
   Status: Triaged = Fix Released

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

Title:
  kernel command line is not easily customizable

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1044503/+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 1099199] Re: [PATCH] support resizing btrfs filesystems

2013-03-12 Thread Scott Moser
fixed in trunk at revno 784.


** Changed in: cloud-init
   Status: Triaged = Fix Committed

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

Title:
  [PATCH] support resizing btrfs filesystems

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1099199/+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 1099199] Re: [PATCH] support resizing btrfs filesystems

2013-03-12 Thread Scott Moser
fix-released in 0.7.2~bzr795-0ubuntu1.


** Changed in: cloud-init (Ubuntu)
   Status: Confirmed = Fix Released

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

Title:
  [PATCH] support resizing btrfs filesystems

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1099199/+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 1145215] Re: cloud-init mangles sources.lists if mirror can't be found

2013-03-12 Thread Scott Moser
** Also affects: cloud-init (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Changed in: cloud-init (Ubuntu)
   Status: New = Fix Released

** Changed in: cloud-init (Ubuntu Precise)
   Status: New = Triaged

** Changed in: cloud-init (Ubuntu Precise)
   Importance: Undecided = Low

** Changed in: cloud-init (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  cloud-init mangles sources.lists if mirror can't be found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1145215/+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 1145215] Re: cloud-init mangles sources.lists if mirror can't be found

2013-03-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/ubuntu/precise/cloud-init/sru

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

Title:
  cloud-init mangles sources.lists if mirror can't be found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1145215/+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 1097687] Re: (CVE-2012-5976) AST-2012-014 Crashes due to large stack allocations when using TCP

2013-03-12 Thread Bug Watch Updater
** Changed in: asterisk (Debian)
   Status: Fix Released = New

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

Title:
  (CVE-2012-5976) AST-2012-014 Crashes due to large stack allocations
  when using TCP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/asterisk/+bug/1097687/+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 1152820] [NEW] Unable to install quantum due to hash sum mismatch on python-gflags

2013-03-12 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

root@cld4b1ubuntu:~# apt-get install quantum-server quantum-plugin-openvswitch
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
  alembic python-cliff python-cmd2 python-configobj python-gflags python-mako 
python-markupsafe
  python-netaddr python-novaclient python-pyparsing python-pyudev python-quantum
  python-quantumclient quantum-common
Suggested packages:
  python-beaker python-mako-doc ipython python-gobject python-qt4 
python-pyside.qtcore
The following NEW packages will be installed:
  alembic python-cliff python-cmd2 python-configobj python-gflags python-mako 
python-markupsafe
  python-netaddr python-novaclient python-pyparsing python-pyudev python-quantum
  python-quantumclient quantum-common quantum-plugin-openvswitch quantum-server
0 upgraded, 16 newly installed, 0 to remove and 0 not upgraded.
Need to get 39.7 kB/2,920 kB of archives.
After this operation, 15.3 MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://us.archive.ubuntu.com/ubuntu/ precise/main python-gflags all 
1.5.1-1build1 [39.7 kB]
Fetched 39.7 kB in 0s (96.1 kB/s)
Failed to fetch 
http://us.archive.ubuntu.com/ubuntu/pool/main/p/python-gflags/python-gflags_1.5.1-1b
uild1_all.deb  Hash Sum mismatch
E: Unable to fetch some archives, maybe run apt-get update or try with 
--fix-missing?
root@cld4b1ubuntu:~#

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


** Tags: packaging
-- 
Unable to install quantum due to hash sum mismatch on python-gflags
https://bugs.launchpad.net/bugs/1152820
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to quantum 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 1126378] Re: SchedulerHostFilterNotFound: Scheduler Host Filter AvailabilityZoneFilter, CapacityFilter, CapabilitiesFilter could not be found.

2013-03-12 Thread John Griffith
So this specific issue was due to the fact that there were some issues
with the packages which has now been fixed (Precise, Quantal and
Raring).

A new bug has been opened to address the fact that any failure in
dependencies list will result in this generic message from the cinder
scheduler with no real good explanation or detail of what the real
problem is.

https://bugs.launchpad.net/cinder/+bug/1131322

** Changed in: cinder
   Status: Triaged = Invalid

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

Title:
  SchedulerHostFilterNotFound: Scheduler Host Filter
  AvailabilityZoneFilter, CapacityFilter, CapabilitiesFilter could not
  be found.

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1126378/+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 1133608] Re: Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

2013-03-12 Thread Adam Young
Cannot reproduce.  Something is different between a default install and
people who are seeing this.  Need to determine what that is.

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

Title:
  Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/1133608/+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 1133608] Re: Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

2013-03-12 Thread Dolph Mathews
Is this issue somehow specific to the ubuntu packages?

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

Title:
  Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/1133608/+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 1153988] [NEW] keystone starts too early

2013-03-12 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

In folsom from the ubuntu cloud archive keystone tried to start too early and 
failed, perhaps because some of its dependencies wasn't up yet. 
The fix was adding runlevels to /etc/init/keystone.conf
start on (local-filesystems and net-device-up IFACE!=lo and runlevel [2345] )

I'm reporting it here because - though
https://wiki.ubuntu.com/ServerTeam/CloudArchive says the bugs go on the
normal ways - ubuntu-bug refused to report it.

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

-- 
keystone starts too early
https://bugs.launchpad.net/bugs/1153988
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to keystone 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 1153364] Re: trouble with guest network connectivity when host is using a bonded interface

2013-03-12 Thread Serge Hallyn
Thanks for reporting this bug.  (Sorry about the delay - I've sat and
thought about this a few times but haven't yet had any definite thoughts
about what would debug this).

Do you have the vhost_net module installed?

I'm pretty sure the bug is in qemu itself, but just to be sure would you
mind testing with a lxc container to see if it has the same problem?
Just

sudo apt-get -y install lxc
cat  lxc.conf.custom  EOF
lxc.network.type=veth
lxc.network.link=br0
lxc.network.flags=up
EOF
sudo lxc-create -t ubuntu -n r1 -f lxc.conf.custom
sudo lxc-start -n r1

then log in as user ubuntu password ubuntu, and see if networking stays
up.

This seems very reminiscent of bug 997978.

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

** Changed in: linux (Ubuntu)
   Importance: Undecided = High

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

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

Title:
  trouble with guest network connectivity when host is using a bonded
  interface

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1153364/+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 1153988] Re: keystone starts too early

2013-03-12 Thread Dolph Mathews
** Project changed: keystone = keystone (Ubuntu)

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

Title:
  keystone starts too early

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/keystone/+bug/1153988/+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 1153364] Missing required logs.

2013-03-12 Thread Brad Figg
This bug is missing log files that will aid in diagnosing the problem.
From a terminal window please run:

apport-collect 1153364

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

** Changed in: linux (Ubuntu)
   Status: New = Incomplete

** Tags added: quantal

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

Title:
  trouble with guest network connectivity when host is using a bonded
  interface

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1153364/+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 1133608] Re: Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

2013-03-12 Thread Adam Gandelman
Nothing special in the packaging, the package upgrade process just
basically lays out the new code and calls db_sync.

Took a closer look and have had no luck reproducing with current trunk
(installed from ppa:openstack-ubuntu-testing/grizzly-trunk-testing), but
was able to reproduce reliably using the g3 packages cited in the
original bug report.  Wondering if this might be a duplicate of  Bug
#1130424?  From what I can tell the fix didn't make it into G3.

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

Title:
  Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/1133608/+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 1154392] [NEW] package backuppc 3.2.1-2ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-03-12 Thread Ted J. Michalik
Public bug reported:

Tried to remove and then re-install.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: backuppc 3.2.1-2ubuntu1.1
ProcVersionSignature: Ubuntu 3.2.0-38.61-generic 3.2.37
Uname: Linux 3.2.0-38-generic x86_64
ApportVersion: 2.0.1-0ubuntu17.1
AptOrdering:
 backuppc: Install
 backuppc: Configure
Architecture: amd64
Date: Tue Mar 12 21:23:51 2013
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
MarkForUpload: True
SourcePackage: backuppc
Title: package backuppc 3.2.1-2ubuntu1.1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)
mtime.conffile..etc.backuppc.config.pl: 2013-02-26T07:33:54
mtime.conffile..etc.backuppc.hosts: 2013-02-17T10:44:47

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


** Tags: amd64 apport-package precise

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

Title:
  package backuppc 3.2.1-2ubuntu1.1 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/backuppc/+bug/1154392/+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 1154392] Re: package backuppc 3.2.1-2ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-03-12 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package backuppc 3.2.1-2ubuntu1.1 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/backuppc/+bug/1154392/+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 1016895] Re: smbd crashed with SIGABRT in dump_core()/setgroups being passed a -1 group is causing crashes.

2013-03-12 Thread Nick Brennan
The package in -proposed seems to have resolved the 'sys_setgroups
failed' issue for me as well.

3.5.0-23-generic #35~precise1-Ubuntu SMP Fri Jan 25 17:15:33 UTC 2013
i686 i686 i386 GNU/Linux


Package: samba
Status: install ok installed
Priority: optional
Section: net
Installed-Size: 22380
Maintainer: Ubuntu Developers ubuntu-devel-disc...@lists.ubuntu.com
Architecture: i386
Version: 2:3.6.3-2ubuntu2.4
Replaces: samba-common (= 2.0.5a-2)
Depends: samba-common (= 2:3.6.3-2ubuntu2.4), libwbclient0 (= 
2:3.6.3-2ubuntu2.4), libacl1 (= 2.2.51-5), libattr1 (= 1:2.4.46-5), libc6 (= 
2.15), libcap2 (= 2.10), libcomerr2 (= 1.01), libcups2 (= 1.4.0), 
libgssapi-krb5-2 (= 1.10+dfsg~), libk5crypto3 (= 1.6.dfsg.2), libkrb5-3 (= 
1.10+dfsg~), libldap-2.4-2 (= 2.4.7), libpam0g (= 0.99.7.1), libpopt0 (= 
1.14), libtalloc2 (= 2.0.4~git20101213), libtdb1 (= 1.2.7+git20101214), 
zlib1g (= 1:1.1.4), debconf (= 0.5) | debconf-2.0, upstart-job, 
libpam-runtime (= 1.0.1-11), libpam-modules, lsb-base (= 3.2-13), procps, 
update-inetd, adduser, samba-common-bin

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

Title:
  smbd crashed with SIGABRT in dump_core()/setgroups being passed a -1
  group is causing crashes.

To manage notifications about this bug go to:
https://bugs.launchpad.net/samba/+bug/1016895/+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 1115053] Re: Multiple open vulnerabilities in tomcat7 in 12.04 and 11.10

2013-03-12 Thread Christian Kuersteiner
I rewrote the description on CVE-2012-3439.patch and fixed the
whitespace changes in CVE-2012-0022.patch as far as I saw them.

CVE-2012-3439 gave me quite some headache since the testcases upstream changed 
already before a lot and it was hard to adopt to the oneiric version. Either I 
would have to try to backport all the changes from upstream which might mean to 
change more or less the whole TesterDigestAuthenticatorPerformance.java and 
cause some further errors because of some changes done somewhere else. Or I 
leave the testcases as they are and just adopt the needed changes made in the 
methods in DigestAuthenticator.java.
I went with the second option since the actual security bug was patched in 
DigestAuthenticator.java. This let me omit the inclusion of 
ConcurrentMessageDigest.java since this class is just used in the updated 
testcases.  I think it was the rigth decision but let me know if you think 
different.

This just as an additional information to the DEP-3 description in
CVE-2012-3439.patch.

** Patch added: lp1115053-oneiric-5.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/tomcat7/+bug/1115053/+attachment/3571362/+files/lp1115053-oneiric-5.debdiff

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

Title:
  Multiple open vulnerabilities in tomcat7 in 12.04 and 11.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tomcat7/+bug/1115053/+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 427775] Re: ntpdate.dhcp always ignored

2013-03-12 Thread YunQiang Su
As for now gnome 3.8 will be released, and gnome-system-tools is still 3.0.
It seems that gnome-system-tools is dead.

I think that we can fix this now.

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

Title:
  ntpdate.dhcp always ignored

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ntp/+bug/427775/+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