[Bug 1334958] Re: package haproxy 1.4.24-2 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2014-06-26 Thread Mark Henderson
I have resolved this for this install; this box had an actual user
account called `haproxy`. I renamed this account to something else and
attempted the update again. It was successful that time.

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

Title:
  package haproxy 1.4.24-2 failed to install/upgrade: ErrorMessage:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/haproxy/+bug/1334958/+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 1334958] Re: package haproxy 1.4.24-2 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2014-06-26 Thread Mark Henderson
** Attachment added: "modified.conffile..etc.haproxy.haproxy.cfg.txt"
   
https://bugs.launchpad.net/ubuntu/+source/haproxy/+bug/1334958/+attachment/4140330/+files/modified.conffile..etc.haproxy.haproxy.cfg.txt

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

Title:
  package haproxy 1.4.24-2 failed to install/upgrade: ErrorMessage:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/haproxy/+bug/1334958/+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 1334958] [NEW] package haproxy 1.4.24-2 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2014-06-26 Thread Mark Henderson
Public bug reported:

Doing release upgrade from 12.04 to 14.04.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: haproxy 1.4.24-2
ProcVersionSignature: Ubuntu 3.2.0-36.57-generic 3.2.35
Uname: Linux 3.2.0-36-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
Date: Fri Jun 27 15:36:08 2014
DuplicateSignature: package:haproxy:1.4.24-2:ErrorMessage: subprocess installed 
post-installation script returned error exit status 1
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
returned error exit status 1
InstallationDate: Installed on 2012-10-02 (633 days ago)
InstallationMedia: Ubuntu-Server 11.10 "Oneiric Ocelot" - Release amd64 
(20111011)
SourcePackage: haproxy
Title: package haproxy 1.4.24-2 failed to install/upgrade: ErrorMessage: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to trusty on 2014-06-27 (0 days ago)
modified.conffile..etc.default.haproxy:
 # Set ENABLED to 1 if you want the init script to start haproxy.
 ENABLED=1
 # Add extra flags here.
 #EXTRAOPTS="-de -m 16"
mtime.conffile..etc.default.haproxy: 2012-10-02T12:34:46.10
mtime.conffile..etc.haproxy.haproxy.cfg: 2014-06-27T14:46:05.313880

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


** Tags: amd64 apport-package need-duplicate-check trusty

** Attachment removed: "modified.conffile..etc.haproxy.haproxy.cfg.txt"
   
https://bugs.launchpad.net/ubuntu/+source/haproxy/+bug/1334958/+attachment/4140329/+files/modified.conffile..etc.haproxy.haproxy.cfg.txt

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

Title:
  package haproxy 1.4.24-2 failed to install/upgrade: ErrorMessage:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/haproxy/+bug/1334958/+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 1334958] Re: package haproxy 1.4.24-2 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2014-06-26 Thread Mark Henderson
# this config needs haproxy-1.1.28 or haproxy-1.2.1

global
log 127.0.0.1   local0
log 127.0.0.1   local1 notice
#log loghostlocal0 info
maxconn 4096
#chroot /usr/share/haproxy
user haproxy
group haproxy
daemon
#debug
#quiet
stats socket /etc/haproxy/haproxysock level admin


defaults
log global
modehttp
option  httplog
option  dontlognull
retries 3
option redispatch
maxconn 2000
contimeout  5000
clitimeout  5
srvtimeout  5

listen stats :1936
mode http
stats enable
stats hide-version
stats realm Haproxy\ Statistics
stats uri /
stats auth redacted:redacted

frontend myFlo-HTTP
bind 192.0.2.55:80
default_backend myFlo-Servers-RR
acl scheduler   url_sub -i schedule #ACL for scheduler requests

use_backend myFlo-Servers-SRC if scheduler

frontend myFloLite-HTTP
bind 192.168.100.8:80
default_backend myFloLite-Servers

backend myFloLite-Servers
mode http
balance roundrobin
option httpchk HEAD /
server liteweb1:80 192.168.100.9 check port 80 inter 2000
server liteweb2:80 192.168.100.10 check port 80 inter 2000

backend myFlo-Servers-RR
mode http
balance roundrobin
option httpchk HEAD /health_check.html HTTP/1.1\r\nHost:\ haproxy.test
server myfloweb1:80 192.168.100.5 check port 80 inter 2000
server myfloweb2:80 192.168.100.14 check port 80 inter 2000

backend myFlo-Servers-SRC
mode http
balance source
option httpchk HEAD /health_check.html HTTP/1.1\r\nHost:\ haproxy.test
server myfloweb1:80 192.168.100.5 check port 80 inter 2000
server myfloweb2:80 192.168.100.14 check port 80 inter 2000

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

Title:
  package haproxy 1.4.24-2 failed to install/upgrade: ErrorMessage:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/haproxy/+bug/1334958/+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 1194074] Re: Default index.html blindly overwritten

2014-06-26 Thread Michael Lustfield
Apache goes against the Debian policy on this one. They have to because
of some hacks in some plugins that are supposed to enhance security. The
default is simply a default. Some people will actually store websites in
/etc/nginx/www/ on debian systems. There's no way to correct everyone
that isn't willing to learn how to administer a system.

Even if we stick things where they don't belong (/var/www/html), people
will still treat that like what they should overwrite which means we
would then have to manage the package maintained version and the user
version.

I'm okay with sticking a README file in the default location, but ... I
really doubt anyone that needs to read it will actually read it.

For reference, I'm maintaining the package, and the first thing I do
after installing nginx is rm /etc/nginx/sites-available/default. Some
people prefer stuff be in /var/www, some prefer /srv, some even think
/opt, and yet others think everything should be in /home. We adhere to
the Debian policy which leaves the admin free to do whatever they want
by way of simply creating their own config instead of using default.

Honestly, my intention with the default config was "it works", here are
some examples and a quick intro to a config, now do it yourself.

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

Title:
  Default index.html blindly overwritten

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1194074/+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 1261529] Re: mysql-5.5 creates the 'test' database

2014-06-26 Thread Marc Deslauriers
I actually fixed this in April with the following USN:

http://www.ubuntu.com/usn/usn-2170-1/


** Changed in: mysql-5.5 (Ubuntu Precise)
   Status: Triaged => Fix Released

** Changed in: mysql-5.5 (Ubuntu Saucy)
   Status: Triaged => Fix Released

** Changed in: mysql-5.5 (Ubuntu Quantal)
   Status: Won't Fix => Fix Released

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

Title:
  mysql-5.5 creates the 'test' database

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1261529/+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 1334916] [NEW] sshd-ConsoleKit integration patch causes abrupt termination of multichannel sessions

2014-06-26 Thread Nikita Shulga
Public bug reported:

Attached to this report is a small app the reproduces the issue by creating 
multiple channels within one sessions. (I fist hit this issue using JSCH 
library)
Following information is printed to stdout if sshd is launched with -d flags 
(I've modified the sshd code to print PIDs next to debug level):
debug3(7526): monitor_read: checking request 156
debug3(7526): mm_answer_consolekit_register entering
debug1(7526): session_by_tty: session 0 tty /dev/pts/1
debug1(7573): server_input_channel_req: channel 2 request pty-req reply 1
debug1(7573): session_by_channel: session 2 channel 2
debug1(7573): session_input_channel_req: session 2 req pty-req
debug1(7573): Allocating pty.
debug3(7573): mm_request_send entering: type 28
debug3(7573): mm_pty_allocate: waiting for MONITOR_ANS_PTY
debug3(7573): mm_request_receive_expect entering: type 29
debug3(7573): mm_request_receive entering
debug1(7526): Unable to open session: The name org.freedesktop.ConsoleKit was 
not provided by any .service files
debug3(7526): mm_request_send entering: type 157
debug3(7526): mm_request_receive entering
debug3(7526): monitor_read: checking request 28
debug3(7526): mm_answer_pty entering
debug2(7526): session_new: allocate (allocated 2 max 10)
debug3(7526): session_unused: session id 2 unused
debug1(7526): session_new: session 2
mm_request_receive_expect: read: rtype 157 != type 29

>From the log, it looks as if two processes use the same set of pipes to
communicate to the monitor, one of them is sending
MONITOR_REQ_CONSOLEKIT_REGISTER, while another  MONITOR_REQ_PTY, and
because they use same set of pipes, and because both processes use same
pipe FDs, monitor reply is sometimes delivered to the wrong process.

I can reproduce the failure 90% of time using attached app, which expects first 
argument to be host name, second - login and the third - password, that are 
defaulted to ubuntu:ubuntu@localhost:
$ ./ssh-multisession 
Connecting to localhost...Done!
Authenticating as ubuntu...Done.
Starting channel 0
Starting channel 1
ssh_channel_request_pty()=-1: Socket error: disconnected
Starting channel 2
ssh_channel_open_session()=-1: Writing packet: error on socket (or connection 
closed): Operation now in progress
Starting channel 3

The same script works fine if sshd is compiled without consolekit.patch:
./ssh-multisession debian-host debian debian
Connecting to 172.17.162.237...Done!
Authenticating as debian...Done.
Starting channel 0
Starting channel 1
Starting channel 2
Starting channel 3
Starting channel 4
Starting channel 5
Starting channel 6
Starting channel 7
Starting channel 8
Starting channel 9

P.S. To compile a test app one needs to have libssh-dev package
installed on your system.

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

** Attachment added: "Small app that opens ssh connection and creates 10 
channels"
   
https://bugs.launchpad.net/bugs/1334916/+attachment/4140102/+files/ssh-multisession.c

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

Title:
  sshd-ConsoleKit integration patch causes abrupt termination of
  multichannel sessions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/1334916/+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 1329051] Re: local charm deployment fails on "git not found" due to wrong apt proxy

2014-06-26 Thread Ian Booth
** Also affects: juju-core
   Importance: Undecided
   Status: New

** Changed in: juju-core
   Importance: Undecided => High

** Changed in: juju-core
   Status: New => Triaged

** Changed in: juju-core
Milestone: None => next-stable

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

Title:
  local charm deployment fails on "git not found" due to wrong apt proxy

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1329051/+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 1227650] Re: Using suds allows an attacker to overwrite arbitrary files that you have the rights to access

2014-06-26 Thread Jamie Strandboge
** Changed in: suds (Ubuntu Quantal)
   Status: Confirmed => Won't Fix

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

Title:
  Using suds allows an attacker to overwrite arbitrary files that you
  have the rights to access

To manage notifications about this bug go to:
https://bugs.launchpad.net/suds/+bug/1227650/+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 1261529] Re: mysql-5.5 creates the 'test' database

2014-06-26 Thread Jamie Strandboge
** Changed in: mysql-5.5 (Ubuntu Quantal)
   Status: Triaged => Won't Fix

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

Title:
  mysql-5.5 creates the 'test' database

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1261529/+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 1261045] Re: Security bugfix in lxc-sshd template: add ro to the init-script

2014-06-26 Thread Jamie Strandboge
** Changed in: lxc (Ubuntu Quantal)
   Status: Confirmed => Won't Fix

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

Title:
  Security bugfix in lxc-sshd template: add ro to the init-script

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1261045/+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 1184223] Re: CVE-2013-2061: use of non-constant-time memcmp in HMAC comparison in openvpn_decrypt

2014-06-26 Thread Jamie Strandboge
** Changed in: openvpn (Ubuntu Quantal)
   Status: Confirmed => Won't Fix

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

Title:
  CVE-2013-2061: use of non-constant-time memcmp in HMAC comparison in
  openvpn_decrypt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvpn/+bug/1184223/+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 1193445] Re: Directory /var/log/nginx is world readable [CVE-2013-0337]

2014-06-26 Thread Jamie Strandboge
** Changed in: nginx (Ubuntu Quantal)
   Status: Confirmed => Won't Fix

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

Title:
  Directory /var/log/nginx is world readable [CVE-2013-0337]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1193445/+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 1212059] Re: Possible XSS via is_safe_url

2014-06-26 Thread Jamie Strandboge
** Changed in: python-django (Ubuntu Quantal)
   Status: Triaged => Won't Fix

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

Title:
  Possible XSS via is_safe_url

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-django/+bug/1212059/+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 1098654] Re: nginx vulnerable to MITM Attack [CVE-2011-4968]

2014-06-26 Thread Jamie Strandboge
** Changed in: nginx (Ubuntu Quantal)
   Status: Confirmed => Won't Fix

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

Title:
  nginx vulnerable to MITM Attack [CVE-2011-4968]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1098654/+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 1045986] Re: Ubuntu AppArmor policy is too lenient with shell scripts

2014-06-26 Thread Jamie Strandboge
** Changed in: cups (Ubuntu Quantal)
   Status: Confirmed => Won't Fix

** Changed in: firefox (Ubuntu Quantal)
   Status: Confirmed => Won't Fix

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

Title:
  Ubuntu AppArmor policy is too lenient with shell scripts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1045986/+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 1153638] Re: nrpe allows the passing of $() as command arguments to execute shell commands

2014-06-26 Thread Jamie Strandboge
** Changed in: nagios-nrpe (Ubuntu Quantal)
   Status: Confirmed => Won't Fix

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

Title:
  nrpe allows the passing of $() as command arguments to execute shell
  commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nagios-nrpe/+bug/1153638/+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 1219658] Re: Wrong image size using rbd backend for libvirt

2014-06-26 Thread Rafael David Tinoco
** Description changed:

  [Impact]
  
-   * [2cebfd2] libvirt: convert cpu features attribute from list to 
-a set (LP: #1267191)
-   
-   cpu features list which is being sent to libvirt,
-   when creating a domain or calling compareCPU, must contain only
-   unique entries. Multiple issues arise when we are updating the
-   features attribute in LibvirtConfigCPU class (for example during
-   migration).
-   
-   * [b86a0e5] Fixes rdb backend image size (LP: #1219658) -> THIS!
+   * [2cebfd2] libvirt: convert cpu features attribute from list to
+    a set (LP: #1267191)
  
-   The original fix for bug 1219658 introduced a factor of 1024 error
-   in the resulting rbd image size -> real urgent to be fixed.
+  cpu features list which is being sent to libvirt,
+  when creating a domain or calling compareCPU, must contain only
+  unique entries. Multiple issues arise when we are updating the
+  features attribute in LibvirtConfigCPU class (for example during
+  migration).
+ 
+   * [b86a0e5] Fixes rdb backend image size (LP: #1219658) -> THIS!
+ 
+  The original fix for bug 1219658 introduced a factor of 1024 error
+  in the resulting rbd image size -> real urgent to be fixed.
  
  [Test Case]
+  
+  LP: #1267191
+  * systemctl restart openstack-nova-compute
+Observe /var/log/nova/compute.log
  
-  * To be provided soon. 
-Tests indicate fix is running in a big production without any problem.
+  LP: #1219658
+  * Testing this fix implies only in having rdb backend.
  
  [Regression Potential]
  
-  * To be provided soon.
+  * Tests indicate fix is running in a big production without any
+ problem.
+ 
+  LP: #1267191
+  * A regression would continue to cause nova not to start (as is happening
+today with this bug under described conditions).
+ 
+  LP: #1219658
+  * RDB backend could stop working (keeping the bug will eventualy cause 
+an outage for those who use rdb backend)
  
  [Other Info]
  
  For rbd image backend for libvirt, the root partition will use the image
  size not 'disk' size. It lack of resize root volume in the codes.

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

Title:
  Wrong image size using rbd backend for libvirt

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/havana/+bug/1219658/+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 1322100] Re: check_dhcp is vulnerable to information leak when run as suid root

2014-06-26 Thread Jamie Strandboge
** Changed in: nagios-plugins (Ubuntu)
   Status: New => Triaged

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

Title:
  check_dhcp is vulnerable to information leak when run as suid root

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nagios-plugins/+bug/1322100/+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 1219658] Re: Wrong image size using rbd backend for libvirt

2014-06-26 Thread Rafael David Tinoco
** Project changed: nova => nova (Ubuntu)

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

Title:
  Wrong image size using rbd backend for libvirt

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/havana/+bug/1219658/+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 1219658] [NEW] Wrong image size using rbd backend for libvirt

2014-06-26 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

[Impact]

  * [2cebfd2] libvirt: convert cpu features attribute from list to 
   a set (LP: #1267191)

cpu features list which is being sent to libvirt,
when creating a domain or calling compareCPU, must contain only
unique entries. Multiple issues arise when we are updating the
features attribute in LibvirtConfigCPU class (for example during
migration).

  * [b86a0e5] Fixes rdb backend image size (LP: #1219658) -> THIS!

The original fix for bug 1219658 introduced a factor of 1024 error
in the resulting rbd image size -> real urgent to be fixed.

[Test Case]

 * To be provided soon. 
   Tests indicate fix is running in a big production without any problem.

[Regression Potential]

 * To be provided soon.

[Other Info]

For rbd image backend for libvirt, the root partition will use the image
size not 'disk' size. It lack of resize root volume in the codes.

** Affects: nova (Ubuntu)
 Importance: Undecided
 Assignee: Haomai Wang (haomai)
 Status: In Progress

** Affects: nova/havana
 Importance: Undecided
 Status: In Progress


** Tags: havana-backport-potential libvirt
-- 
Wrong image size using rbd backend for libvirt
https://bugs.launchpad.net/bugs/1219658
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to nova 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 1306537] Re: LXC local provider fails to provision precise instances from a trusty host

2014-06-26 Thread Brad Crittenden
** Description changed:

+ SRU Rationale for juju-quickstart only:
+ [Impact]
+ 
+ juju-quickstart could not deploy the juju-gui charm for trusty.
+ 
+ [Test Case]
+ 
+ On a trusty host, using an LXC environment run juju-quickstart and
+ ensure that the GUI charm is deployed.
+ 
+ [Regression Potential]
+ 
+ The supported series is expanded from just precise to include trusty.
+ The trusty charm deployments have been used  via the PPA for quite a
+ while.  The regression potential is small.
+ 
+ [Original Bug Report]
+ 
  I'm using the LXC local provider on Trusty with,
  
  juju-core:  1.18.0-0ubuntu1
  juju-local:  1.18.0-0ubuntu1
  juju-mongodb: 2.4.9-0ubuntu3
  
  I can create trusty units without a problem but precise  units gets
  stuck in pending. I have used this script
  http://blog.naydenov.net/2014/03/remove-juju-local-environment-cleanly/
  to wipe my environment before attempting the test.

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

Title:
  LXC local provider fails to provision precise instances from a trusty
  host

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1306537/+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 1306537] Re: LXC local provider fails to provision precise instances from a trusty host

2014-06-26 Thread Brad Crittenden
** Branch linked: lp:~frankban/juju-quickstart/trusty-charm

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

Title:
  LXC local provider fails to provision precise instances from a trusty
  host

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1306537/+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 1309678] Re: a value is required for the control bucket field

2014-06-26 Thread Brad Crittenden
** Description changed:

+ [Impact]
+ 
+ If the control-bucket field is not present in the environments.yaml file
+ juju will generate one.  This patch makes control-bucket an optional
+ field for juju-quickstart.
+ 
+ [Test Case]
+  * Create an ec2 environment in $JUJU_HOME/environments.yaml that does not 
have a control-bucket.
+  * Bootstrap that environment using juju, not juju-quickstart.
+  * Ensure a control-bucket is in the generated environments/.jenv 
file.
+  * Run juju-quickstart using the existing environment and see that no error 
is raised.
+ 
+ [Regression Potential]
+ 
+ The overly strict error checking has been relaxed to stay in sync with
+ juju-core. Potential for regression is minimal.
+ 
+ [Original Bug Report]
+ 
  Having bootstraped an amazon environment with juju, I run juju-
  quickstart and get the following error
  
  $ juju-quickstart
  usage: juju-quickstart [-h] [-e ENV_NAME] [-n BUNDLE_NAME] [-i]
-[--environments-file ENV_FILE]
-[--gui-charm-url CHARM_URL] [--no-browser]
-[--distro-only] [--ppa] [--version] [--debug]
-[--description]
-[bundle]
+    [--environments-file ENV_FILE]
+    [--gui-charm-url CHARM_URL] [--no-browser]
+    [--distro-only] [--ppa] [--version] [--debug]
+    [--description]
+    [bundle]
  juju-quickstart: error: cannot use the amazon environment:
  a value is required for the control bucket field
  
  I checked that I did have a value for `control-bucket` in
  ~/.juju/environments/amazon.jenv and ran
  
  $ juju-quickstart -i
  
  There I saw that some properties were copied from environments.yaml (it
  apparently did not use the .jenv file) and some not and that it needed
  the `control-bucket` value (which is not defined in environments.yaml).
  
  So, properties like `access-key`, `secret-key`, `type` were extracted 
successfully from environments.yam but not the `region`.
  And it ignored the bucket field in environments/amazon.jenv (which was 
defined by me).
  
- 
  ENV info:
  
  $ juju version
  1.19.0-trusty-amd64
  
  $ juju-quickstart --version
  juju-quickstart 1.3.1

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

Title:
  a value is required for the control bucket field

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-quickstart/+bug/1309678/+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 1311321] Re: ascii can't decode error in 14.04 server install

2014-06-26 Thread Brad Crittenden
** Description changed:

+ [Impact]
+ 
+ Running juju-quickstart from a machine without locales installed and
+ properly configured causes a traceback.
+ 
+ [Test Case]
+ 
+ Using juju-quickstart with the patch applied the following should not
+ exit:
+ 
+ LC_ALL=C juju-quickstart -i
+ 
+ [Regression Potential]
+ 
+ The patch attempts to set encoding using urwid.  If it fails the user is
+ warned rather than the application printing a traceback.  Regression
+ potential is minimal.
+ 
+ [Original Bug Report]
+ 
  Reported from  a user in irc. They attempted to use juju-quickstart on
  14.04 server install and got the following trace.
  
  $ juju-quickstart
  
  Traceback (most recent call last):
  File "/usr/bin/juju-quickstart", line 32, in 
  options = manage.setup()
  File "/usr/lib/python2.7/dist-packages/quickstart/manage.py", line 427, in 
setup
  _setup_env(options, parser)
  File "/usr/lib/python2.7/dist-packages/quickstart/manage.py", line 276, in 
_setup_env
  parser, env_type_db, env_db, env_file)
  File "/usr/lib/python2.7/dist-packages/quickstart/manage.py", line 206, in 
_start_interactive_session
  views.env_index, env_type_db, env_db, save_callable)
  File "/usr/lib/python2.7/dist-packages/quickstart/cli/views.py", line 128, in 
show
  loop.run()
  File "/usr/lib/python2.7/dist-packages/urwid/main_loop.py", line 272, in run
  self.screen.run_wrapper(self._run)
  File "/usr/lib/python2.7/dist-packages/urwid/raw_display.py", line 242, in 
run_wrapper
  return fn()
  File "/usr/lib/python2.7/dist-packages/urwid/main_loop.py", line 312, in _run
  self.draw_screen()
  File "/usr/lib/python2.7/dist-packages/urwid/main_loop.py", line 563, in 
draw_screen
  canvas = self._topmost_widget.render(self.screen_size, focus=True)
  File "/usr/lib/python2.7/dist-packages/urwid/widget.py", line 141, in 
cached_render
  canv = fn(self, size, focus=focus)
  File "/usr/lib/python2.7/dist-packages/urwid/container.py", line 755, in 
render
  self.top_w_size(size, left, right, top, bottom), focus)
  File "/usr/lib/python2.7/dist-packages/urwid/widget.py", line 141, in 
cached_render
  canv = fn(self, size, focus=focus)
  File "/usr/lib/python2.7/dist-packages/urwid/container.py", line 1049, in 
render
  focus and self.focus_part == 'header')
  File "/usr/lib/python2.7/dist-packages/urwid/widget.py", line 141, in 
cached_render
  canv = fn(self, size, focus=focus)
  File "/usr/lib/python2.7/dist-packages/urwid/container.py", line 1493, in 
render
  canv = w.render((maxcol,), focus=focus and item_focus)
  File "/usr/lib/python2.7/dist-packages/urwid/widget.py", line 141, in 
cached_render
  canv = fn(self, size, focus=focus)
  File "/usr/lib/python2.7/dist-packages/urwid/decoration.py", line 225, in 
render
  canv = self._original_widget.render(size, focus=focus)
  File "/usr/lib/python2.7/dist-packages/urwid/widget.py", line 141, in 
cached_render
  canv = fn(self, size, focus=focus)
  File "/usr/lib/python2.7/dist-packages/urwid/widget.py", line 751, in render
  canv = SolidCanvas(self.div_char, maxcol, 1)
  File "/usr/lib/python2.7/dist-packages/urwid/canvas.py", line 495, in __init__
  self._text, cs = apply_target_encoding(fill_char[:end])
  File "/usr/lib/python2.7/dist-packages/urwid/util.py", line 121, in 
apply_target_encoding
  s = s.encode( _target_encoding )
  UnicodeEncodeError: 'ascii' codec can't encode character u'\u2582' in 
position 0: ordinal not in range(128)

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

Title:
  ascii can't decode error in 14.04 server install

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-quickstart/+bug/1311321/+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 1325013] Re: juju-quickstart has no dep8 tests so can break when juju-core changes

2014-06-26 Thread Richard Harding
** Changed in: juju-quickstart
   Status: New => Triaged

** Changed in: juju-quickstart
   Importance: Undecided => High

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

Title:
  juju-quickstart has no dep8 tests so can break when juju-core changes

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-quickstart/+bug/1325013/+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 1334803] [NEW] package squid3 3.3.8-1ubuntu6 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2014-06-26 Thread djieno
Public bug reported:

Upgraded 12.04 to 14.04 doesn't seem to work. I received an error about

GRUB failed to install to the following devices:
 │
│   
   │
│ /dev/dm-0

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: squid3 3.3.8-1ubuntu6
ProcVersionSignature: Ubuntu 3.2.0-56.86-generic 3.2.51
Uname: Linux 3.2.0-56-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
Date: Thu Jun 26 20:47:14 2014
DuplicateSignature: package:squid3:3.3.8-1ubuntu6:ErrorMessage: subprocess 
installed post-installation script returned error exit status 1
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
returned error exit status 1
InstallationDate: Installed on 2013-03-17 (465 days ago)
InstallationMedia: Ubuntu-Server 12.04.1 LTS "Precise Pangolin" - Release amd64 
(20120817.3)
SourcePackage: squid3
Title: package squid3 3.3.8-1ubuntu6 failed to install/upgrade: ErrorMessage: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to trusty on 2014-06-26 (0 days ago)
mtime.conffile..etc.squid3.squid.conf: 2013-12-19T20:06:34.434700

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


** Tags: amd64 apport-package need-duplicate-check trusty

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

Title:
  package squid3 3.3.8-1ubuntu6 failed to install/upgrade: ErrorMessage:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/1334803/+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 1334749] [NEW] virt-install doesn't automatically default to Xen in Trusty

2014-06-26 Thread GeorgeDunlap
Public bug reported:

If you boot under Xen in Trusty, and install virt-install, if you don't
specify a URI it gives you this warning:

WARNING  KVM acceleration not available, using 'qemu'

If you specify "-c xen:///" on the command-line, however, it works
properly.

Similarly, if after creating a VM with virt-installer, you check it with
virsh without specifying the URI, you get nothing; but if you specify
Xen, then it works:

# virsh list --all
 IdName   State


# virsh -c xen:/// list --all
 IdName   State

 - u14.04 shut off

I'm not sure what the issue is here: my colleagues who are using a more
recent version of libvirt (1.2.5) in Fedora 20 were unable to reproduce
the issue.

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

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

Title:
  virt-install doesn't automatically default to Xen in Trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1334749/+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 1334738] [NEW] libvirt + libxl (Xen) PV console broken

2014-06-26 Thread GeorgeDunlap
Public bug reported:

Using virt-installer with libvirt/libxl in 14.04 I saw this:

http://pastebin.com/6pbS6Db7

# virt-install --connect=xen:/// --name u14.04 --ram 1024 --disk
U1L1.img,size=2 --location
http://ftp.ubuntu.com/ubuntu/dists/raring/main/installer-amd64/

Starting install...
Retrieving file MANIFEST...
| 2.1 kB 00:00 ...
Retrieving file MANIFEST...
| 2.1 kB 00:00 ...
Retrieving file vmlinuz...
|  10 MB 00:00 ...
Retrieving file initrd.gz...
|  36 MB 02:34 ...
Creating storage file U1L1.img
| 2.0 GB 00:00
Creating domain...
|0 B 00:03
Connected to domain u14.04
Escape character is ^]
error: internal error: cannot find character device 

It turns out this was fixed in libvirt 1.2.4; c/s
657cb1e44d90bab451256616f9d98fb4439a080c

(You can browse the commit here:
http://libvirt.org/git/?p=libvirt.git;a=commit;h=657cb1e44d90bab451256616f9d98fb4439a080c
)

Would it be possible to backport that change into 14.04, so
virt-install can be used to install PV guests?

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

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

Title:
  libvirt + libxl (Xen) PV console broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1334738/+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 1068756] Re: IPv6 Privacy Extensions enabled on Ubuntu Server by default

2014-06-26 Thread Scott Moser
given "RFC4941 SHOULD (RFC capitalisation) be turned off by default" above, and 
the general lack of value of privacy extensions being enabled on a server or 
cloud geust, i really think we should:
 a.) turn off privacy extensions on cloud-images for 14.10+
 b.) look for a way to disable them by default for 'sever' for 14.10+
  note, this has been difficult in the past to set "server specific 
config". as determining what is a server and what is not is not as straight 
forward as it may appear. 
 c.) document how the user can use user-data to customize the file on any 
ubuntu guest
 d.) document how cloud provider can use vendor-data to customize this change 
this defualt on any ubuntu guest.
 e.) change cloud-init metadata requests to IPV6_PREFER_SRC_PUBLIC
 f.) consider this change in 14.04 for cloud-images.

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

Title:
  IPv6 Privacy Extensions enabled on Ubuntu Server by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1068756/+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 1330408] Re: ucfr fails if smb.conf is not owned by samba

2014-06-26 Thread Filip Sohajek
** Changed in: samba (Ubuntu)
   Status: In Progress => Fix Committed

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

Title:
  ucfr fails if smb.conf is not owned by samba

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1330408/+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 1250007] Re: Bootstrapping azure causes memory to fill

2014-06-26 Thread Curtis Hovey
** Changed in: juju-core
   Status: Fix Committed => Fix Released

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

Title:
  Bootstrapping azure causes memory to fill

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1250007/+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 1330408] Re: ucfr fails if smb.conf is not owned by samba

2014-06-26 Thread Launchpad Bug Tracker
** Branch linked: lp:~filip-sohajek/ubuntu/trusty/samba/fix-for-1330408

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

Title:
  ucfr fails if smb.conf is not owned by samba

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1330408/+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 1332203] Re: autofs5-ldap regularly crashes after long periods of time

2014-06-26 Thread Paul Kilgo
Just to make sure all the information is together, I noticed earlier
there was a piece of a log message in that stack trace I posted. I tried
to see what I could do to piece together part of it:

  "%s: lookup(ldap): query failed for search dn %s: %s"

became

  "Invalid DN syntax: lookup(ldap): query failed for search dn %s: %s"

I was unable to get the other two substitutions since it's difficult to
pull information out of the va_list. I have a suspicion that one of them
may be an empty string or NULL. That may all be site-specific problems,
but I grepped through the autofs5 code and saw that message corresponds
to line 396 of `modules/lookup_ldap.c`:

 395 error(logopt,
 396   MODPREFIX "query failed for search dn %s: %s",
 397   this->basedn, ldap_err2string(rv));

which is the error handling side of an ldap_search_s call:

 374   rv = ldap_search_s(ldap, this->basedn,
 375  scope, query, attrs, 0, &result);

I don't have the debug symbols for lookup_ldap.so so I'm unable to go
much further than this.

In the meantime we are also running automount through strace (per bug
Bug #593603 but with `strace -f`) to see if we can figure out what that
log message is.

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

Title:
  autofs5-ldap regularly crashes after long periods of time

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs5/+bug/1332203/+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 1328958] Re: Local provider run on server images requires an ubuntu user

2014-06-26 Thread Max Brustkern
There we go!  I have /home/ubuntu left over from an old setup simulating
the conditions in the CI lab, but I have no ubuntu user.  I'll delete
/home/ubuntu and try again.

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

Title:
  Local provider run on server images requires an ubuntu user

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1328958/+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 1334669] Re: Please update to 3.4.0-2 from Debian unstable

2014-06-26 Thread dino99
** Tags added: package-update

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

Title:
  Please update to 3.4.0-2 from Debian unstable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1334669/+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 1334669] [NEW] Please update to 3.4.0-2 from Debian unstable

2014-06-26 Thread dino99
Public bug reported:

Ubuntu Utopic have recently updated libnet-dns-perl to 0.77-3 (proposed)
but is not installable without spamassassin 3.4.0-2 or better, which is 
available from Sid

spamassassin (3.4.0-2) unstable; urgency=low

  * Install a systemd unit file. (Closes: 716887)
  * Use env+start-stop-daemon instead of su in cron jobs.
  * Skip the random pause in cron.daily if running interactively.
  * Apply upstream patch to support new Net::DNS interface.
(Closes: 752542)
  * Use dpkg-buildflags instead of the deprecated hardening-wrapper

 -- Noah Meyerhans   Tue, 24 Jun 2014 23:44:30 -0700

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


** Tags: bot-stop-nagging package-update utopic

** Tags added: bot-stop-nagging utopic

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

Title:
  Please update to 3.4.0-2 from Debian unstable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1334669/+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 1334572] Re: php5-fpm upgrade broken after deleting sample config

2014-06-26 Thread Stanislaw Pitucha
Filtering out unneeded stuff:

=
$ grep -v -e '^$' -e '^//' /etc/apt/apt.conf.d/50unattended-upgrades 
Unattended-Upgrade::Allowed-Origins {
"${distro_id}:${distro_codename}-security";
};
Unattended-Upgrade::Package-Blacklist {
};
=

/var/log/apt/history.log:
=
Start-Date: 2014-06-24  06:25:57
Upgrade: libssl1.0.0:amd64 (1.0.1e-3ubuntu1.5, 1.0.1e-3ubuntu1.6), 
php5-fpm:amd64 (5.5.3+dfsg-1ubuntu2.3, 5.5.3+dfsg-1ubuntu2.4), php5-mysql:amd64 
(5.5.3+dfsg-1ubuntu2.3, 5.5.3+dfsg-1ubuntu2.4), php5-common:amd64 
(5.5.3+dfsg-1ubuntu2.3, 5.5.3+dfsg-1ubuntu2.4), php5-curl:amd64 
(5.5.3+dfsg-1ubuntu2.3, 5.5.3+dfsg-1ubuntu2.4), php5-readline:amd64 
(5.5.3+dfsg-1ubuntu2.3, 5.5.3+dfsg-1ubuntu2.4), php5-cli:amd64 
(5.5.3+dfsg-1ubuntu2.3, 5.5.3+dfsg-1ubuntu2.4), openssl:amd64 
(1.0.1e-3ubuntu1.5, 1.0.1e-3ubuntu1.6), php5-gmp:amd64 (5.5.3+dfsg-1ubuntu2.3, 
5.5.3+dfsg-1ubuntu2.4), php5-gd:amd64 (5.5.3+dfsg-1ubuntu2.3, 
5.5.3+dfsg-1ubuntu2.4), php5-intl:amd64 (5.5.3+dfsg-1ubuntu2.3, 
5.5.3+dfsg-1ubuntu2.4)
Error: Sub-process /usr/bin/dpkg returned an error code (1)
End-Date: 2014-06-24  06:26:23
=

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

Title:
  php5-fpm upgrade broken after deleting sample config

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1334572/+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 1211110] Re: network manager openvpn dns push data not updating resolv.conf

2014-06-26 Thread Gabriel Nell
Would love to see this feature to make a very popular VPN client work
seamlessly with Ubuntu. I'm on 14.04 and trying to figure out a work-
around for this (probably will disable resolvconf).

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

Title:
  network manager openvpn dns push data not updating resolv.conf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/120/+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 1211110] Re: network manager openvpn dns push data not updating resolv.conf

2014-06-26 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: openvpn (Ubuntu)
   Status: New => Confirmed

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

Title:
  network manager openvpn dns push data not updating resolv.conf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/120/+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 1325013] Re: juju-quickstart has no dep8 tests so can break when juju-core changes

2014-06-26 Thread Robie Basak
** Also affects: juju-quickstart
   Importance: Undecided
   Status: New

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

Title:
  juju-quickstart has no dep8 tests so can break when juju-core changes

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-quickstart/+bug/1325013/+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 1334572] Re: php5-fpm upgrade broken after deleting sample config

2014-06-26 Thread Marc Deslauriers
Could you please attach your /etc/apt/apt.conf.d/50unattended-upgrades
file?

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

Title:
  php5-fpm upgrade broken after deleting sample config

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1334572/+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 1311321] Re: ascii can't decode error in 14.04 server install

2014-06-26 Thread Robie Basak
** Also affects: juju-quickstart (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: juju-quickstart (Ubuntu Trusty)
   Importance: Undecided
   Status: New

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

Title:
  ascii can't decode error in 14.04 server install

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-quickstart/+bug/1311321/+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 1309678] Re: a value is required for the control bucket field

2014-06-26 Thread Robie Basak
** Also affects: juju-quickstart (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: juju-quickstart (Ubuntu Trusty)
   Importance: Undecided
   Status: New

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

Title:
  a value is required for the control bucket field

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-quickstart/+bug/1309678/+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 1334572] Re: php5-fpm upgrade broken after deleting sample config

2014-06-26 Thread Stanislaw Pitucha
I'm using the default apt/dpkg config. (apart from turning on auto
security updates) Also yes, this is exactly the message I get.

The problem is that the unattended upgrade also gets that question and
stop with package not configured.

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

Title:
  php5-fpm upgrade broken after deleting sample config

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1334572/+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 1311724] Re: Macbook Air resumes immidiately after suspend

2014-06-26 Thread Maarten Verwijs
I'm experiencing the same problem.

- First suspend after reboot works every time without fail.
- Second suspend does a resume after 3 or 4 seconds. 

The workaround ( sudo pm-suspend; sudo pm-suspend) only works on my
Macbook Air 6,2 when I've applied the workaround for this bug:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1318218

Workaround: 
echo min_power > /sys/class/scsi_host/host0/link_power_management_policy

In order to have my macbook air suspend everytime I close the lid I've
added this line to /usr/sbin/pm-suspend:


$ diff -p pm-suspend.distrib pm-suspend
*** pm-suspend.distrib  2013-11-06 17:26:04.0 +0100
--- pm-suspend  2014-06-26 14:06:18.672660848 +0200
*** if run_hooks sleep "$ACTION $METHOD"; th
*** 101,106 
--- 101,107 
log "$(date): performing $METHOD"
sync
"do_$METHOD" || r=128
+   "do_$METHOD" || r=128
log "$(date): Awake."
  else
log "$(date): Inhibit found, will not perform $METHOD"

Also do a "dpkg-redirect add /usr/sbin/pm-suspend" to prevent the change
from getting overwritten.

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

Title:
  Macbook Air resumes immidiately after suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pm-utils/+bug/1311724/+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 1334572] Re: php5-fpm upgrade broken after deleting sample config

2014-06-26 Thread Marc Deslauriers
www.conf is a conffile. Deleting it should not replace it when the
package is upgraded.

If updating manually, the following prompt should appear:

Configuration file `/etc/php5/fpm/pool.d/www.conf'
 ==> Deleted (by you or by a script) since installation.
 ==> Package distributor has shipped an updated version.
   What would you like to do about it ?  Your options are:
Y or I  : install the package maintainer's version
N or O  : keep your currently-installed version
  D : show the differences between the versions
  Z : start a shell to examine the situation
 The default action is to keep your current version.
*** www.conf (Y/I/N/O/D/Z) [default=N] ? 

Do you perhaps have the following option set up in apt somewhere?

Dpkg::Options {
   "--force-confmiss";
}

** Changed in: php5 (Ubuntu)
   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/1334572

Title:
  php5-fpm upgrade broken after deleting sample config

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1334572/+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 1328958] Re: Local provider run on server images requires an ubuntu user

2014-06-26 Thread Robie Basak
I think I've found the problem:

environs/cloudinit/cloudinit.go:280

fmt.Sprintf(
`[ -e /home/ubuntu ] && (printf '%%s\n' %s > 
/home/ubuntu/.juju-proxy && chown ubuntu:ubuntu /home/ubuntu/.juju-proxy)`,

shquote(cfg.ProxySettings.AsScriptEnvironment(

It looks like Juju assumes that the ubuntu user and groups exist if
/home/ubuntu exists. I had a /home/ubuntu symlink on my laptop for
debugging elsewhere, but no actual ubuntu user (that only existed in a
schroot environment). Removing the symlink worked around the problem.

Max, please could you check your system for /home/ubuntu?

The correct way to do this is to also check for the ubuntu user and
group, eg. using "getent passwd ubuntu" and "getent group ubuntu".

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

Title:
  Local provider run on server images requires an ubuntu user

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1328958/+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 1328958] Re: Local provider run on server images requires an ubuntu user

2014-06-26 Thread Robie Basak
A better way might be to copy the ownership of /home/ubuntu into
/home/ubuntu/.juju-proxy.

But why was the code trying to touch my system's /home/ubuntu in the
first place? My HOME is /home/robie, and my USER is robie. I think this
bug goes deeper than this.

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

Title:
  Local provider run on server images requires an ubuntu user

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1328958/+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 1325025] Re: juju-core does not depend on distro-info

2014-06-26 Thread Launchpad Bug Tracker
This bug was fixed in the package juju-core - 1.18.4-0ubuntu1

---
juju-core (1.18.4-0ubuntu1) utopic; urgency=medium

  * New upstream release, including essential fixes for supporting Utopic and
all future releases:
- Support Utopic and future releases by using distro-info-data over
  hardcoded defaults (LP: #1314686).
- Correctly use juju-mongodb on Trusty and all future releases, rather than
  hardcoding Trusty as special (LP: #1321025).
  * Depend on distro-info so that Juju can use its data in preference to
hard-coded defaults (LP: #1325025).
  * d/tests/*:
- Remove hardcoding of precise.
- Use --upload-tools to reduce external dependencies on local and manual 
provider testing.
- Add stderr logging.
- New test for manual provider against localhost.
- Mark tests breaks-testbed and isolation-machine so that they do not step 
on each other.
- Add "future release" testing for both local and manual providers.
 -- Robie BasakFri, 06 Jun 2014 15:53:28 +

** Changed in: juju-core (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  juju-core does not depend on distro-info

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/juju-core/+bug/1325025/+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 1314686] Re: Please add support for utopic

2014-06-26 Thread Launchpad Bug Tracker
This bug was fixed in the package juju-core - 1.18.4-0ubuntu1

---
juju-core (1.18.4-0ubuntu1) utopic; urgency=medium

  * New upstream release, including essential fixes for supporting Utopic and
all future releases:
- Support Utopic and future releases by using distro-info-data over
  hardcoded defaults (LP: #1314686).
- Correctly use juju-mongodb on Trusty and all future releases, rather than
  hardcoding Trusty as special (LP: #1321025).
  * Depend on distro-info so that Juju can use its data in preference to
hard-coded defaults (LP: #1325025).
  * d/tests/*:
- Remove hardcoding of precise.
- Use --upload-tools to reduce external dependencies on local and manual 
provider testing.
- Add stderr logging.
- New test for manual provider against localhost.
- Mark tests breaks-testbed and isolation-machine so that they do not step 
on each other.
- Add "future release" testing for both local and manual providers.
 -- Robie BasakFri, 06 Jun 2014 15:53:28 +

** Changed in: juju-core (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  Please add support for utopic

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1314686/+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 1321025] Re: local provider mongo error on utopic

2014-06-26 Thread Launchpad Bug Tracker
This bug was fixed in the package juju-core - 1.18.4-0ubuntu1

---
juju-core (1.18.4-0ubuntu1) utopic; urgency=medium

  * New upstream release, including essential fixes for supporting Utopic and
all future releases:
- Support Utopic and future releases by using distro-info-data over
  hardcoded defaults (LP: #1314686).
- Correctly use juju-mongodb on Trusty and all future releases, rather than
  hardcoding Trusty as special (LP: #1321025).
  * Depend on distro-info so that Juju can use its data in preference to
hard-coded defaults (LP: #1325025).
  * d/tests/*:
- Remove hardcoding of precise.
- Use --upload-tools to reduce external dependencies on local and manual 
provider testing.
- Add stderr logging.
- New test for manual provider against localhost.
- Mark tests breaks-testbed and isolation-machine so that they do not step 
on each other.
- Add "future release" testing for both local and manual providers.
 -- Robie BasakFri, 06 Jun 2014 15:53:28 +

** Changed in: juju-core (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  local provider mongo error on utopic

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1321025/+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 1334572] [NEW] php5-fpm upgrade broken after deleting sample config

2014-06-26 Thread Stanislaw Pitucha
Public bug reported:

If the sample config is not available anymore, php5-fpm cannot be
updated automatically and leaves the service down.

Every production deployment will want to remove
/etc/php5/fpm/pool.d/www.conf and use its own configuration. But when an
automatic security update comes in, this results in:

# apt-get install

1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up php5-fpm (5.5.3+dfsg-1ubuntu2.5) ...

Configuration file `/etc/php5/fpm/pool.d/www.conf'
 ==> Deleted (by you or by a script) since installation.
 ==> Package distributor has shipped an updated version.
...

This should never break when unattended security updates are running.

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

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

Title:
  php5-fpm upgrade broken after deleting sample config

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1334572/+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 1334304] Re: Uses Of Apple For Your Skin

2014-06-26 Thread William Grant
** Package changed: libvirt (Ubuntu) => null-and-void

** Information type changed from Public to Private

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

Title:
  Uses Of Apple For Your Skin

To manage notifications about this bug go to:
https://bugs.launchpad.net/null-and-void/+bug/1334304/+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 1334265] Re: Contribution Of Organic Beauty Products In Maintaining Skin Health

2014-06-26 Thread William Grant
** Package changed: libvirt (Ubuntu) => null-and-void

** Information type changed from Public to Private

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

Title:
  Contribution Of Organic Beauty Products In Maintaining Skin Health

To manage notifications about this bug go to:
https://bugs.launchpad.net/null-and-void/+bug/1334265/+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 1334205] Re: White Clay And Honey Mask A Product To Enhance Your Natural Beauty

2014-06-26 Thread William Grant
** Package changed: libvirt (Ubuntu) => null-and-void

** Information type changed from Public to Private

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

Title:
  White Clay And Honey Mask A Product To Enhance Your Natural Beauty

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