[Bug 1080267] [NEW] package samba-common 2:3.6.3-2ubuntu2.3 failed to install/upgrade: subprocess installed post-installation script was killed by signal (Terminated)

2012-11-18 Thread jimallen
Public bug reported:

just upgraded unbuntu now getting this warning

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: samba-common 2:3.6.3-2ubuntu2.3
ProcVersionSignature: Ubuntu 3.2.0-34.53-generic 3.2.33
Uname: Linux 3.2.0-34-generic i686
ApportVersion: 2.0.1-0ubuntu15
Architecture: i386
Date: Sat Nov 17 22:10:42 2012
ErrorMessage: subprocess installed post-installation script was killed by 
signal (Terminated)
MarkForUpload: True
PackageArchitecture: all
RelatedPackageVersions:
 nautilus 1:3.4.2-0ubuntu5
 gvfs 1.12.1-0ubuntu1.1
SambaClientRegression: Yes
SourcePackage: samba
Title: package samba-common 2:3.6.3-2ubuntu2.3 failed to install/upgrade: 
subprocess installed post-installation script was killed by signal (Terminated)
UpgradeStatus: Upgraded to precise on 2012-11-17 (0 days ago)

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


** Tags: apport-package i386 precise

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

Title:
  package samba-common 2:3.6.3-2ubuntu2.3 failed to install/upgrade:
  subprocess installed post-installation script was killed by signal
  (Terminated)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1080267/+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 308952] Re: FireFTP(Mozilla) cannot LIST files

2012-11-18 Thread Bug Watch Updater
Launchpad has imported 13 comments from the remote bug at
https://bugzilla.mozilla.org/show_bug.cgi?id=478322.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2009-02-13T02:25:45+00:00 quendi wrote:

User-Agent:   Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.6) 
Gecko/2009020911 Ubuntu/8.04 (hardy) Firefox/3.0.6
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.6) 
Gecko/2009020911 Ubuntu/8.04 (hardy) Firefox/3.0.6

during the past months various FTP servers have changed their behavior
how to shut down encrypted connections. this has been inspired by a
change in the filezilla ftp client implementation, see http://forum
.filezilla-project.org/viewtopic.php?f=2t=7688

vsftpd since version 2.0.7 also changed the way tls connections are closed. 
since then fireftp, a popular ftp addon for firefox, is awfully slow. this has 
been reported here: https://www.mozdev.org/bugs/show_bug.cgi?id=20043
since fireftp uses the mozilla framework for ssl bugzilla.mozilla.org is the 
right place to report the bug.

from what i've seen the problem is as follows:
# fireftp opens an encrypted connection
# command channel (e.g. authentication or noop) works fine
# when you do a directory listing or file transfer it opens a new data 
connection using passive ftp
# the server replies with the requested data on the new conncetion and sends a 
tls close notify
# fireftp simply acks this and waits for more data
# after 5 minutes the server times out and sends a fin/ack packet
# fireftp closes the connection using fin/ack and finally displays the 
directory / dowloads the file

this means you have to wait 5 minutes for each directory listing or file
transfer!

i'll attach an decrypted wireshark screenshot of the data connection

Reproducible: Always

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/6


On 2009-02-13T02:27:28+00:00 quendi wrote:

Created attachment 362167
wireshark screenshot of the data connection

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/7


On 2009-02-13T16:24:55+00:00 Bugzilla-tf wrote:

Does this happen without Fireftp ?
If not: what is Fireftp doing different from the Mozilla ftp implementation ?
Example FTP URL ?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/8


On 2009-02-13T17:44:21+00:00 quendi wrote:

(In reply to comment #2)
 Does this happen without Fireftp ?

it can't happen without fireftp since firefox only offers a standard
(non ftps) client.

 If not: what is Fireftp doing different from the Mozilla ftp
implementation ?

don't know, this is what the fireftp maintainer says at 
https://www.mozdev.org/bugs/show_bug.cgi?id=20043
FireFTP just runs off of the Mozilla APIs as far as sockets and SSL and the
like is concerned.  This sounds like something that should be handled at that
level.

 Example FTP URL ?

you could try lnxnt.org, it runs vsftpd 2.0.7 and currently has tls for
anonymous users enabled.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/9


On 2009-02-13T17:54:22+00:00 Bugzilla-tf wrote:

We don't accept extension bugs in bugzilla unless the developer of that
addon explains what he is doing. Only with this information a Gecko
developer can deceide if the bug is valid. You can't expect that our
developers waste their time with digging through every addon that gets
reported here and 90% of such issues are bugs in the addon itself.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/10


On 2009-02-13T21:10:41+00:00 Mimecuvalo wrote:

Matthias,
I'm the developer of FireFTP.  Sorry for not weighing in earlier.

The code in question is here:
http://www.mozdev.org/source/browse/fireftp/src/content/js/connection/dataSocket.js?rev=1.52

Basically, all FireFTP does is, when it comes to SSL sockets:
this.dataTransport = this.transportService.createTransport([ssl], 1, 
this.host, this.port, proxyInfo);

There isn't anything that the extension does beyond that in messing
around with the socket.  It seems that something underlying in Mozilla's
socket code is conflicting with vsftpd patched code.

Is vsftpd at fault or is Mozilla code at fault?  I'm not sure - I think
a networking engineer at Mozilla might need to take a look.

FWIW, my guess is this bug should be filed under Core-Networking.

Reply at:

[Bug 939300] Re: Update Apache to 2.4

2012-11-18 Thread dfrg.msc
No 2.4 with 12.10, and how about 13.04?

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

Title:
  Update Apache to 2.4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/939300/+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 1078922] Re: Fan runs unnecessary

2012-11-18 Thread T J Schemkes
What a pity.
I was hoping to find a solution for the remarkable difference in the behavior 
of the fan in Ubuntu 12.04 LTS and Ubuntu 12.10.
Occasionally quietly running in 12.04 LTS and almost fully running in 12.10.
The BIOS has no setting for temperature or fan.
Maybe newer Intel microcode can help me.

** Changed in: lm-sensors (Ubuntu)
   Status: Invalid = Confirmed

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

Title:
  Fan runs unnecessary

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lm-sensors/+bug/1078922/+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 1080363] [NEW] module 'citrixxml' not found

2012-11-18 Thread TJ
Public bug reported:

The following two commands run at the command-line (the latter generated
by zenmap's Intense Scan option) cause a failure due to missing script
and library support. Apt suggests the scripts aren't in the Ubuntu
archives.

Details of the missing script are at
http://nmap.org/nsedoc/lib/citrixxml.html

$ apt-file search citrix | grep nselib
$

$ sudo nmap -T4 -A -v --script all 192.168.0.20
$ sudo nmap -sS -sU -T4 -A -v -PE -PP -PS21,22,23,25,80,113,31339 
-PA80,113,443,10042 -PO --script all 192.168.0.20

Starting Nmap 5.21 ( http://nmap.org ) at 2012-11-18 14:30 GMT
NSE: failed to initialize the script engine:
/usr/share/nmap/nse_main.lua:276: 
/usr/share/nmap/scripts/citrix-brute-xml.nse:35: module 'citrixxml' not found:
no field package.preload['citrixxml']
no file '/usr/share/nmap/nselib/citrixxml.lua'
no file './citrixxml.lua'
no file '/usr/local/share/lua/5.1/citrixxml.lua'
no file '/usr/local/share/lua/5.1/citrixxml/init.lua'
no file '/usr/local/lib/lua/5.1/citrixxml.lua'
no file '/usr/local/lib/lua/5.1/citrixxml/init.lua'
no file '/usr/share/lua/5.1/citrixxml.lua'
no file '/usr/share/lua/5.1/citrixxml/init.lua'
no file './citrixxml.so'
no file '/usr/local/lib/lua/5.1/citrixxml.so'
no file '/usr/lib/x86_64-linux-gnu/lua/5.1/citrixxml.so'
no file '/usr/lib/lua/5.1/citrixxml.so'
no file '/usr/local/lib/lua/5.1/loadall.so'
stack traceback:
[C]: in function 'assert'
/usr/share/nmap/nse_main.lua:276: in function 'new'
/usr/share/nmap/nse_main.lua:434: in function 'Entry'
/usr/share/nmap/scripts/script.db:5: in function 'db_closure'
/usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
/usr/share/nmap/nse_main.lua:766: in main chunk
[C]: ?

QUITTING!


Installing the script directly doesn't completely solve the issue:

$ sudo wget -O /usr/share/nmap/nselib/citrixxml.lua
http://nmap.org/svn/nselib/citrixxml.lua

$ sudo nmap -T4 -A -v --script all 192.168.0.20

Starting Nmap 5.21 ( http://nmap.org ) at 2012-11-18 14:40 GMT
NSE: failed to initialize the script engine:
/usr/share/nmap/nse_main.lua:276: /usr/share/nmap/nselib/citrixxml.lua:25: 
attempt to call field 'module' (a nil value)
stack traceback:
[C]: in function 'assert'
/usr/share/nmap/nse_main.lua:276: in function 'new'
/usr/share/nmap/nse_main.lua:434: in function 'Entry'
/usr/share/nmap/scripts/script.db:5: in function 'db_closure'
/usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
/usr/share/nmap/nse_main.lua:766: in main chunk
[C]: ?

QUITTING!

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

** Patch added: Fix for citrixxml.lua
   
https://bugs.launchpad.net/bugs/1080363/+attachment/3437624/+files/citrixxml.lua.diff

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

Title:
  module 'citrixxml' not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nmap/+bug/1080363/+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 1080363] Re: module 'citrixxml' not found

2012-11-18 Thread TJ
** Description changed:

  The following two commands run at the command-line (the latter generated
  by zenmap's Intense Scan option) cause a failure due to missing script
  and library support. Apt suggests the scripts aren't in the Ubuntu
  archives.
  
  Details of the missing script are at
  http://nmap.org/nsedoc/lib/citrixxml.html
+ 
+ The original script plus my attached patch are required to solve the
+ issue.
  
  $ apt-file search citrix | grep nselib
  $
  
  $ sudo nmap -T4 -A -v --script all 192.168.0.20
  $ sudo nmap -sS -sU -T4 -A -v -PE -PP -PS21,22,23,25,80,113,31339 
-PA80,113,443,10042 -PO --script all 192.168.0.20
  
  Starting Nmap 5.21 ( http://nmap.org ) at 2012-11-18 14:30 GMT
  NSE: failed to initialize the script engine:
  /usr/share/nmap/nse_main.lua:276: 
/usr/share/nmap/scripts/citrix-brute-xml.nse:35: module 'citrixxml' not found:
-   no field package.preload['citrixxml']
-   no file '/usr/share/nmap/nselib/citrixxml.lua'
-   no file './citrixxml.lua'
-   no file '/usr/local/share/lua/5.1/citrixxml.lua'
-   no file '/usr/local/share/lua/5.1/citrixxml/init.lua'
-   no file '/usr/local/lib/lua/5.1/citrixxml.lua'
-   no file '/usr/local/lib/lua/5.1/citrixxml/init.lua'
-   no file '/usr/share/lua/5.1/citrixxml.lua'
-   no file '/usr/share/lua/5.1/citrixxml/init.lua'
-   no file './citrixxml.so'
-   no file '/usr/local/lib/lua/5.1/citrixxml.so'
-   no file '/usr/lib/x86_64-linux-gnu/lua/5.1/citrixxml.so'
-   no file '/usr/lib/lua/5.1/citrixxml.so'
-   no file '/usr/local/lib/lua/5.1/loadall.so'
+  no field package.preload['citrixxml']
+  no file '/usr/share/nmap/nselib/citrixxml.lua'
+  no file './citrixxml.lua'
+  no file '/usr/local/share/lua/5.1/citrixxml.lua'
+  no file '/usr/local/share/lua/5.1/citrixxml/init.lua'
+  no file '/usr/local/lib/lua/5.1/citrixxml.lua'
+  no file '/usr/local/lib/lua/5.1/citrixxml/init.lua'
+  no file '/usr/share/lua/5.1/citrixxml.lua'
+  no file '/usr/share/lua/5.1/citrixxml/init.lua'
+  no file './citrixxml.so'
+  no file '/usr/local/lib/lua/5.1/citrixxml.so'
+  no file '/usr/lib/x86_64-linux-gnu/lua/5.1/citrixxml.so'
+  no file '/usr/lib/lua/5.1/citrixxml.so'
+  no file '/usr/local/lib/lua/5.1/loadall.so'
  stack traceback:
-   [C]: in function 'assert'
-   /usr/share/nmap/nse_main.lua:276: in function 'new'
-   /usr/share/nmap/nse_main.lua:434: in function 'Entry'
-   /usr/share/nmap/scripts/script.db:5: in function 'db_closure'
-   /usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
-   /usr/share/nmap/nse_main.lua:766: in main chunk
-   [C]: ?
+  [C]: in function 'assert'
+  /usr/share/nmap/nse_main.lua:276: in function 'new'
+  /usr/share/nmap/nse_main.lua:434: in function 'Entry'
+  /usr/share/nmap/scripts/script.db:5: in function 'db_closure'
+  /usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
+  /usr/share/nmap/nse_main.lua:766: in main chunk
+  [C]: ?
  
  QUITTING!
- 
  
  Installing the script directly doesn't completely solve the issue:
  
  $ sudo wget -O /usr/share/nmap/nselib/citrixxml.lua
  http://nmap.org/svn/nselib/citrixxml.lua
  
  $ sudo nmap -T4 -A -v --script all 192.168.0.20
  
  Starting Nmap 5.21 ( http://nmap.org ) at 2012-11-18 14:40 GMT
  NSE: failed to initialize the script engine:
  /usr/share/nmap/nse_main.lua:276: /usr/share/nmap/nselib/citrixxml.lua:25: 
attempt to call field 'module' (a nil value)
  stack traceback:
-   [C]: in function 'assert'
-   /usr/share/nmap/nse_main.lua:276: in function 'new'
-   /usr/share/nmap/nse_main.lua:434: in function 'Entry'
-   /usr/share/nmap/scripts/script.db:5: in function 'db_closure'
-   /usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
-   /usr/share/nmap/nse_main.lua:766: in main chunk
-   [C]: ?
+  [C]: in function 'assert'
+  /usr/share/nmap/nse_main.lua:276: in function 'new'
+  /usr/share/nmap/nse_main.lua:434: in function 'Entry'
+  /usr/share/nmap/scripts/script.db:5: in function 'db_closure'
+  /usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
+  /usr/share/nmap/nse_main.lua:766: in main chunk
+  [C]: ?
  
  QUITTING!
+ 
+ Applying the attached patch to the manually downloaded script allows
+ nmap to run.

** Description changed:

  The following two commands run at the command-line (the latter generated
- by zenmap's Intense Scan option) cause a failure due to missing script
- and library support. Apt suggests the scripts aren't in the Ubuntu
- archives.
+ by zenmap's Slow comprehensive scan option) cause a failure due to
+ missing script and library support. Apt suggests the scripts aren't in
+ the Ubuntu archives.
  
  Details of the missing script are at
  http://nmap.org/nsedoc/lib/citrixxml.html
  
  The original script plus my attached patch are required to solve the
  issue.
  
  $ apt-file search citrix | grep nselib
  $
  
  $ sudo nmap -T4 -A -v --script all 192.168.0.20
  $ 

[Bug 1078922] Re: Fan runs unnecessary

2012-11-18 Thread Phillip Susi
Please stop changing the status.


** Changed in: lm-sensors (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  Fan runs unnecessary

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lm-sensors/+bug/1078922/+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 1080369] [NEW] FreeDOS fails to boot in Qemu/kvm

2012-11-18 Thread Dave Gilbert
Public bug reported:

To repeat:
  * Grab freedos ISO from from http://www.freedos.org/download/
  * Add it as a CD to your KVM guest
  * Boot and go through the defaults (I'm using a small - ~90MB - IDE hard 
drive raw image as the 1st IDE disk)
  * Go through all the defaults
  * Install FreeDOS to MBR (option 1 at the last question in the install - I 
also tried syslinux - it didn't help)

Watch it fail to reboot off the hard disk.

It hangs for me at 'Booting from Hard disk...'

(I also tried chainloading it off a Grub iso - didn't work, and I'm
seeing the same symptom with OpenDOS).

Dave

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: qemu-kvm 1.2.0+noroms-0ubuntu2
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
Date: Sun Nov 18 14:57:48 2012
InstallationDate: Installed on 2012-07-17 (123 days ago)
InstallationMedia: Kubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120717)
KvmCmdLine: Error: command ['ps', '-C', 'kvm', '-F'] failed with exit code 1: 
UIDPID  PPID  CSZ   RSS PSR STIME TTY  TIME CMD
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
MarkForUpload: True
ProcEnviron:
 LANGUAGE=en_GB:en
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-18-generic 
root=UUID=711860b7-f028-46b1-83bb-c2be5dc8044d ro nointremap quiet splash 
vt.handoff=7
SourcePackage: qemu-kvm
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/10/2009
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P1.50
dmi.board.name: P55M Pro
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP1.50:bd09/10/2009:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnP55MPro:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.

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


** Tags: amd64 apport-bug 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/1080369

Title:
  FreeDOS fails to boot in Qemu/kvm

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1080369/+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 1080369] Re: FreeDOS fails to boot in Qemu/kvm

2012-11-18 Thread Dave Gilbert
** Attachment added: libvirt config for the vm
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1080369/+attachment/3437655/+files/DOS.xml

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

Title:
  FreeDOS fails to boot in Qemu/kvm

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1080369/+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 1080363] Re: module 'citrixxml' not found

2012-11-18 Thread Ubuntu Foundations Team Bug Bot
The attachment Fix for citrixxml.lua of this bug report has been
identified as being a patch.  The ubuntu-reviewers team has been
subscribed to the bug report so that they can review the patch.  In the
event that this is in fact not a patch you can resolve this situation by
removing the tag 'patch' from the bug report and editing the attachment
so that it is not flagged as a patch.  Additionally, if you are member
of the ubuntu-reviewers team please also unsubscribe the team from this
bug report.

[This is an automated message performed by a Launchpad user owned by
Brian Murray.  Please contact him regarding any issues with the action
taken in this bug report.]

** Tags added: patch

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

Title:
  module 'citrixxml' not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nmap/+bug/1080363/+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 1080363] Re: module 'citrixxml' not found

2012-11-18 Thread Logan Rosen
Thank you for taking the time to report this bug and helping to make
Ubuntu better. However, I am closing it because the bug has been fixed
in the latest development version of Ubuntu - Raring Ringtail.

This is a significant bug in Ubuntu. If you need a fix for the bug in
previous versions of Ubuntu, please do steps 1 and 2 of the SRU
Procedure [1] to bring the need to a developer's attention.

[1]: https://wiki.ubuntu.com/StableReleaseUpdates#Procedure

** Changed in: nmap (Ubuntu)
   Status: New = Fix Released

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

Title:
  module 'citrixxml' not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nmap/+bug/1080363/+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 996162] Re: Please update Asterisk from Debian Sid

2012-11-18 Thread Logan Rosen
asterisk 1:1.8.13.1~dfsg-1ubuntu2 is available in both Quantal and
Raring.

** Changed in: asterisk (Ubuntu)
   Status: Confirmed = Fix Released

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

Title:
  Please update Asterisk from Debian Sid

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/asterisk/+bug/996162/+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 972829] Re: maas-server setting requires port even when using http default

2012-11-18 Thread Julian Edwards
Can someone please SRU this fix to precise?  It is causing a lot of
problems for people.

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

Title:
  maas-server setting requires port even when using http default

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