Re: [Bug 351378] Re: dhclient fails for virtual interfaces (IP aliases)

2009-04-08 Thread Tom Metro
Bryan McLellan wrote:
 Tom Metro wrote:
 I'll have to take a look at ubuntu-minimal to see what it is.
 
 It's a meta package...

I figured that from the name, but I wondered what packages it pulled in,
and what the consequences were for removing it were.


 Uninstalling it would mean that in the future if another package was
 added to to the meta package, you wouldn't get that additional
 package on upgrade.

Which sounds fairly low risk, but something one would ideally want to
avoid.


 You could also remove the dhcp3-client package with
 --force-depends, which just runs the risk that it gets reinstalled
 later during an upgrade. There's probably a complex pinning solution
 too, but I can't fathom it.

I couldn't figure out a way around it. Any combination I came up with
(like putting dhcp3-client on hold, then removing it), just left the
package system in a broken state.

More importantly, on Hardy there are additional dependencies on
dhcp3-client. dhcdbd depends on it, which provides the DBus interface to
dhcp3-client that's used by network manager, which in turn Network
Manager depends on, which in turn ubuntu-desktop depends on.

The resolutions offered up by aptitude (supposedly the best tool for
resolving dependency issues) all involved uninstalling more packages
than I cared to.

To work around this I ended up creating a dummy package using the equivs 
package. That lets me replace the real dhcp3-client with a dummy one, 
which uninstalled the dhcp3-client binaries and scripts.

All this makes me wonder if ubuntu-minimal ought to be dependent on the
generic dhcp-client (which dhcp3-client, dhcpcd, and udhcpc all 
provide), rather than a specific package. (Of course on Hardy that won't 
fix the dhcdbd dependency. I'm guessing that means dhcp3 is probably the 
only client Network Manager knows how to control.)

I'm also wondering if uninstalling dhcp3-client was even necessary. I
noticed when I installed udhcpc that it didn't cause any conflicts, even
though it ought to have conflicted with another package providing
dhcp-client. Either udhcpc isn't correctly tagged as providing
dhcp-client, or the two can peacefully coexist.

Looks like dhcpcd has dhcp-client listed as a conflict, while udhcpc 
doesn't. Given that they all are driven by the sane interfaces config 
file, I'd expect there to be conflicts. I'd like to understand better 
how that works. Is each overwriting the other's ifupdown scripts? Is 
there a common script with a bunch of -x tests to see which binaries are 
present?


 I did test and confirm that dhcpcd=1:3.2.3-1.1 does work on alias
 interfaces on intrepid.

Unfortunately this doesn't work on Hardy with dhcpcd=1:3.0.17-2:

# init.d/networking restart 
   * Reconfiguring network interfaces...
Error, eth0: dhcpcd not running
dhcpcd.sh: interface eth0 has been configured with new IP=192.168.0.203
  * Stopping NTP server ntpd
...done.
  * Starting NTP server ntpd
...done.
Error, eth0:1: ioctl SIOCSIFFLAGS: Cannot assign requested address
Failed to bring up eth0:1.
[...]
...done.

Looks like the usual failure, though in a bit different format than what 
ifconfig produces, suggesting it is making its own syscalls, and they're 
failing in the kernel code. At least it positively states that it failed 
to bring up the interface (confirmed), unlike dhcp3-client.


A second look at the interfaces man page shows that the DHCP
configuration directives there are supported by udhcpc in addition to
dhcpcd. I hadn't noticed that before, and the udhcpc documentation omits
to mention it (should probably file a bug for that).

Given that udhcpc spits out warnings, but did appear to work when
invoked directly on Hardy, I'm going to try that next.

Hurray, it finally worked:

# init.d/networking restart
  * Reconfiguring network interfaces...
RTNETLINK answers: No such process
udhcpc (v0.9.9-pre) started
Sending discover...
Sending select for 192.168.0.203...
Lease of 192.168.0.203 obtained, lease time -1
Resetting default routes
adding dns 192.168.0.35
  * Stopping NTP server ntpd
...done.
  * Starting NTP server ntpd
...done.
udhcpc (v0.9.9-pre) started
SIOCSIFFLAGS: Cannot assign requested address
Sending discover...
Sending select for 192.168.0.238...
Lease of 192.168.0.238 obtained, lease time -1
Resetting default routes
adding dns 192.168.0.35
  * Stopping NTP server ntpd
...done.
Ignoring unknown interface eth1=eth1.
Ignoring unknown interface eth2=eth2.
Ignoring unknown interface ath0=ath0.
Ignoring unknown interface wlan0=wlan0.
[ OK ]
* Starting NTP server ntpd
...done.

# ifconfig
eth0  Link encap:Ethernet  HWaddr 00:04:...:d1:33
 inet addr:192.168.0.203  Bcast:192.168.0.255  Mask:255.255.255.0
[...]
eth0:1Link encap:Ethernet  HWaddr 00:04:...:d1:33
 inet addr:192.168.0.238  Bcast:192.168.0.255  Mask:255.255.255.0


I did have to apply some additional tweaks to interfaces to get udhcpc 
to behave 

[Bug 211631] Re: Network is brought down before network filesystems are unmounted (CIFS timeout at shutdown)

2009-04-08 Thread Ryan Sinn
I am still having the issue with the latest Jaunty Beta 9.04 64-bit
Desktop install.

This would seem to me to be a moderate usability due to the fact it can
take upwards of 5-10 minutes to shutdown depending on the system.

In 8.10 the system would never shut down for me.  Now it seems to
shutdown after idling at the CIFS error for upwards of 5 minutes.

I currently have 5 SMB shares I manually mount as my user once I log in.
I typically would mount them in the FSTAB, but I haven't gotten around
to it yet since I installed the fresh copy of Jaunty Beta this weekend.

-- 
Network is brought down before network filesystems are unmounted (CIFS timeout 
at shutdown)
https://bugs.launchpad.net/bugs/211631
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 351378] Re: dhclient fails for virtual interfaces (IP aliases)

2009-04-08 Thread Tom Metro
Here's the summary how how to work around this bug:

First, if you're using Dnsmasq on the server-side you might run into Bug
#327703. The Dnsmasq author has a patched version available.

1. On Hardy, download and install the attached dhcp3-client dummy package:
 % sudo dpkg -i dhcp3-client-dummy_3.0.6.dfsg-1ubuntu9_all.deb
and then put it on hold:
 % sudo aptitude hold dhcp3-client
On Intrepid, remove the dhcp3-client package and permit ubuntu-minimal to also 
get removed (or build your own dummy package using the equivs package).

2. Install udhcpc:
 % sudo aptitude install udhcpc

3. Add your virtual interface to /etc/network/interfaces, while also
adding unique hostname and client arguments for both. The client
identifiers can match the corresponding host names or be any other
reasonable string, as long as they are not used by any other DHCP
clients on your network.

auto eth0
iface eth0 inet dhcp
  hostname primary-host
  client primary-client-id

auto eth0:1
iface eth0:1 inet dhcp
  hostname virtual-host
  client virtual-client-id

4. Restart the network subsystem:
 % sudo /etc/init.d/networking restart


** Attachment added: Dummy package to permit removing the real dhcp3-client 
package
   
http://launchpadlibrarian.net/25005944/dhcp3-client-dummy_3.0.6.dfsg-1ubuntu9_i386.deb

-- 
dhclient fails for virtual interfaces (IP aliases)
https://bugs.launchpad.net/bugs/351378
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in ubuntu.

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


[Bug 211631] Re: Network is brought down before network filesystems are unmounted (CIFS timeout at shutdown)

2009-04-08 Thread Thierry Carrez
Status update

This problem is well-identified, it will affect Jaunty, there is no need
to confirm it or add to this already-long thread. Please just use the
This bug affects me link at the top instead.

This issue comes from the shutdown sequence that is not supporting a use
case of mounted network filesystems combined with a Networkmanager-
defined networking. It's difficult to solve for everyone because most
solutions are breaking other perfectly valid use cases. Solutions for
the next release cycle will be discussed by the Foundations team.

If you are affected by this bug, workarounds include:
- Do not use system-wide CIFS mounts but use Gnome VFS pseudomounts like typing 
smb://foo/bar in nautilus
- define your network in /etc/network/interfaces rather than in NetworkManager
- hacking the shutdown sequence to make it unmount network filesystems earlier 
(for example moving S31umountnfs.sh to S14umountnfs.sh in /etc/rc[06].d) : will 
fix it if you aren't executing anything on those network filesystems

-- 
Network is brought down before network filesystems are unmounted (CIFS timeout 
at shutdown)
https://bugs.launchpad.net/bugs/211631
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 329173] Re: Impossible to rename file to other case on samba mounted volume

2009-04-08 Thread Thierry Carrez
*** This bug is a duplicate of bug 132233 ***
https://bugs.launchpad.net/bugs/132233

** This bug has been marked a duplicate of bug 132233
   SMB Sharing not case sensitive

-- 
Impossible to rename file to other case on samba mounted volume
https://bugs.launchpad.net/bugs/329173
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 132233] Re: SMB Sharing not case sensitive

2009-04-08 Thread Thierry Carrez
** Bug watch added: Debian Bug tracker #511744
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=511744

** Also affects: samba (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=511744
   Importance: Unknown
   Status: Unknown

** Bug watch added: Samba Bugzilla #6036
   https://bugzilla.samba.org/show_bug.cgi?id=6036

** Also affects: samba via
   https://bugzilla.samba.org/show_bug.cgi?id=6036
   Importance: Unknown
   Status: Unknown

-- 
SMB Sharing not case sensitive
https://bugs.launchpad.net/bugs/132233
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 132233] Re: SMB Sharing not case sensitive

2009-04-08 Thread Thierry Carrez
This should be fixed in 3.3.x, could someone confirm that this is fixed
in Jaunty.

** Changed in: samba (Ubuntu)
   Importance: Undecided = Medium

** Changed in: samba (Ubuntu)
   Status: Confirmed = Triaged

-- 
SMB Sharing not case sensitive
https://bugs.launchpad.net/bugs/132233
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 132233] Re: SMB Sharing not case sensitive

2009-04-08 Thread Bug Watch Updater
** Changed in: samba (Debian)
   Status: Unknown = Fix Released

-- 
SMB Sharing not case sensitive
https://bugs.launchpad.net/bugs/132233
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 357569] [NEW] please set usershare path

2009-04-08 Thread Anand Kumria
Public bug reported:

Binary package hint: samba


Hi,

Whilst perusing my ~/.xsession-error file, I noticed nautilius-share
complaining.

It turns out it is trying to do 'net usershare info', which was failing.

Please set in smb.conf:
 usershare path = /var/lib/samba/usershares

This is okay, since the option 'usershares max' is by default 0 (i.e.
none are allowed).

It would also be a good idea to ship /var/lib/samba/usershares in the
samba-common package, since that package is installed by default when
ubuntu-desktop is selected, as is nautilus-share.

Thanks,
Anand

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
Package: samba 2:3.3.2-1ubuntu3
ProcEnviron:
 PATH=(custom, no user)
 LANG=C
 SHELL=/usr/bin/zsh
SourcePackage: samba
Uname: Linux 2.6.28-11-generic i686

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


** Tags: apport-bug i386

-- 
please set usershare path
https://bugs.launchpad.net/bugs/357569
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 357569] Re: please set usershare path

2009-04-08 Thread Anand Kumria

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/25008692/Dependencies.txt

-- 
please set usershare path
https://bugs.launchpad.net/bugs/357569
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 132233] Re: SMB Sharing not case sensitive

2009-04-08 Thread Bug Watch Updater
** Changed in: samba
   Status: Unknown = Fix Released

-- 
SMB Sharing not case sensitive
https://bugs.launchpad.net/bugs/132233
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 357583] [NEW] missing the last bit for powering off the system

2009-04-08 Thread Arnaud Quette
Public bug reported:

Binary package hint: nut

the debian/nut.links has been wrongly removed and not reintegrated.
as a result, the symlink /etc/init.d/ups-monitor to nut is non existant.

this symlink is a generic mechanism (shared between several UPS oriented
software in Debian) that gets called by the halt script with the
poweroff param. it in turns check if the UPS needs to be powered off,
which is the case whenever a system shutdwon has been triggered after a
power failure, when the UPS reach a low battery level.

I've not bothered making a debdiff for a 1 line patch.
Simply create debian/nut.links with the below content:
etc/init.d/nut etc/init.d/ups-monitor

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

** Affects: nut (Debian)
 Importance: Unknown
 Status: Unknown

-- 
missing the last bit for powering off the system
https://bugs.launchpad.net/bugs/357583
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nut 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 356851] Re: Sharing cups disables entire system with segmentation faults

2009-04-08 Thread Thierry Carrez
*** This bug is a duplicate of bug 303458 ***
https://bugs.launchpad.net/bugs/303458

Many thanks, I think we may have identified the root cause of bug 292791
and bug 303458.

The cupsd apparmor profile prevents access to
/var/lib/samba/group_mapping.ldb and this may result in cupsd/samba
failing very badly in that specific case (corrupting secrets.tdb, then
segfaulting on every pam_smbpass.so call).

I created bug 357581 to authorize *.ldb access. I'll close this one as a
duplicate of bug 303458.

** This bug has been marked a duplicate of bug 303458
   segfault in pam_smbpass.so

-- 
Sharing cups disables entire system with segmentation faults
https://bugs.launchpad.net/bugs/356851
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 357583] Re: missing the last bit for powering off the system

2009-04-08 Thread Arnaud Quette
** Bug watch added: Debian Bug tracker #522506
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522506

** Also affects: nut (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522506
   Importance: Unknown
   Status: Unknown

-- 
missing the last bit for powering off the system
https://bugs.launchpad.net/bugs/357583
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nut 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 303458] Re: segfault in pam_smbpass.so

2009-04-08 Thread Thierry Carrez
Created bug 357581 to fix apparmor smbpass abstraction. I'm not sure it
will ultimately fix this problem, but it would surely explain why the
bug appeared in Samba 3.2 (LDB files weren't in use before) and why this
seems to be Ubuntu-specific (our cupsd/apparmor thing is Ubuntu-
specific). There would still be a bug in samba for failing so badly in
this case but the root cause might be avoided.

-- 
segfault in pam_smbpass.so
https://bugs.launchpad.net/bugs/303458
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 357583] Re: missing the last bit for powering off the system

2009-04-08 Thread Arnaud Quette
** Changed in: nut (Ubuntu)
   Status: New = Confirmed

** Changed in: nut (Ubuntu)
 Assignee: (unassigned) = Dustin Kirkland (kirkland)

-- 
missing the last bit for powering off the system
https://bugs.launchpad.net/bugs/357583
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nut 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 329632] Re: System is not resolvable by DNS when using DHCP

2009-04-08 Thread Alvin
*** This bug is a duplicate of bug 10239 ***
https://bugs.launchpad.net/bugs/10239

** This bug has been marked a duplicate of bug 10239
   dhcp3-client: Does not send hostname to server by default

-- 
System is not resolvable by DNS when using DHCP
https://bugs.launchpad.net/bugs/329632
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in ubuntu.

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


[Bug 221881] Re: dhcp3-client does not send hostname

2009-04-08 Thread Alvin
*** This bug is a duplicate of bug 10239 ***
https://bugs.launchpad.net/bugs/10239

** This bug has been marked a duplicate of bug 10239
   dhcp3-client: Does not send hostname to server by default

-- 
dhcp3-client does not send hostname
https://bugs.launchpad.net/bugs/221881
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in ubuntu.

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


[Bug 235560] Re: Connect to smb server by name doesn't work, but by IP address does

2009-04-08 Thread Thierry Carrez
Gabriel:
How is your problem related to this bug ? This bug is about being able to 
connect by IP address, but never by server name. In your case, you can connect 
once... then the connection dies somehow. Please open a separate bug to track 
your issue.

-- 
Connect to smb server by name doesn't work, but by IP address does
https://bugs.launchpad.net/bugs/235560
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 260687] Re: Purging samba breaks login (pam_smbpass.so segfaults)

2009-04-08 Thread Mantas Kriaučiūnas
** Also affects: samba (Baltix)
   Importance: Undecided
   Status: New

-- 
Purging samba breaks login (pam_smbpass.so segfaults)
https://bugs.launchpad.net/bugs/260687
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 357583] Re: missing the last bit for powering off the system

2009-04-08 Thread Bug Watch Updater
** Changed in: nut (Debian)
   Status: Unknown = New

-- 
missing the last bit for powering off the system
https://bugs.launchpad.net/bugs/357583
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nut 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


Re: [Bug 235560] Re: Connect to smb server by name doesn't work, but by IP address does

2009-04-08 Thread Gabriel Cenkei
Thank You for response. I was looking for my bug in launchpad, and picked
this thread because of the same error pop-up window. Sorry for confusion, I
try to open a new bug report.

2009/4/8 Thierry Carrez thierry.car...@ubuntu.com

 Gabriel:
 How is your problem related to this bug ? This bug is about being able to
 connect by IP address, but never by server name. In your case, you can
 connect once... then the connection dies somehow. Please open a separate bug
 to track your issue.

 --
 Connect to smb server by name doesn't work, but by IP address does
 https://bugs.launchpad.net/bugs/235560
 You received this bug notification because you are a direct subscriber
 of the bug.


-- 
Connect to smb server by name doesn't work, but by IP address does
https://bugs.launchpad.net/bugs/235560
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 303458] Re: segfault in pam_smbpass.so

2009-04-08 Thread Mantas Kriaučiūnas
** Also affects: baltix
   Importance: Undecided
   Status: New

-- 
segfault in pam_smbpass.so
https://bugs.launchpad.net/bugs/303458
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 308308] Re: router does not recognize the hostname

2009-04-08 Thread Alvin
*** This bug is a duplicate of bug 10239 ***
https://bugs.launchpad.net/bugs/10239

** This bug has been marked a duplicate of bug 10239
   dhcp3-client: Does not send hostname to server by default

-- 
router does not recognize the hostname
https://bugs.launchpad.net/bugs/308308
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in ubuntu.

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


[Bug 354243] Re: Nautilus fails to browse any share on network to which Iomega Home Network Hard Drive (MDHD500-N, firmware K108.W15) is attached.

2009-04-08 Thread Thierry Carrez
Hm. If you read comment 6 it appears that smbclient successfully browses the 
share ?
Comment 9 is confusing. Just to be sure, try put the following in your 
/etc/smb.conf to force samba client tools to use it:

client lanman auth = yes

And let us know if it fixes your browsing issue.

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

-- 
Nautilus fails to browse any share on network to which Iomega Home Network Hard 
Drive (MDHD500-N, firmware K108.W15) is attached.
https://bugs.launchpad.net/bugs/354243
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 354243] Re: Nautilus fails to browse any share on network to which Iomega Home Network Hard Drive (MDHD500-N, firmware K108.W15) is attached.

2009-04-08 Thread Thierry Carrez
Above should read /etc/samba/smb.conf, sorry for the typo and the
noise.

-- 
Nautilus fails to browse any share on network to which Iomega Home Network Hard 
Drive (MDHD500-N, firmware K108.W15) is attached.
https://bugs.launchpad.net/bugs/354243
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 354498] Re: Leaving a domain breaks NetworkManager DHCP

2009-04-08 Thread Thierry Carrez
** Also affects: likewise-open (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Leaving a domain breaks NetworkManager DHCP
https://bugs.launchpad.net/bugs/354498
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open 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 352934] Re: Reboot needed after domainjoin before login into Gnome as a domain user

2009-04-08 Thread Thierry Carrez
** Also affects: likewise-open (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Reboot needed after domainjoin before login into Gnome as a domain user
https://bugs.launchpad.net/bugs/352934
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open 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 354498] Re: Leaving a domain breaks NetworkManager DHCP

2009-04-08 Thread Thierry Carrez
** Changed in: likewise-open (Ubuntu)
   Importance: Undecided = Medium

** Changed in: likewise-open (Ubuntu)
   Status: New = In Progress

** Changed in: likewise-open (Ubuntu)
 Assignee: (unassigned) = Thierry Carrez (ttx)

-- 
Leaving a domain breaks NetworkManager DHCP
https://bugs.launchpad.net/bugs/354498
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open 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 352934] Re: Reboot needed after domainjoin before login into Gnome as a domain user

2009-04-08 Thread Thierry Carrez
** Changed in: likewise-open (Ubuntu)
   Importance: Undecided = Medium

** Changed in: likewise-open (Ubuntu)
   Status: New = In Progress

** Changed in: likewise-open (Ubuntu)
 Assignee: (unassigned) = Thierry Carrez (ttx)

-- 
Reboot needed after domainjoin before login into Gnome as a domain user
https://bugs.launchpad.net/bugs/352934
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open 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 354498] Re: Leaving a domain breaks NetworkManager DHCP

2009-04-08 Thread Thierry Carrez
Proposed debdiff for likewise-open

likewise-open (4.1.2982-0ubuntu2) jaunty; urgency=low

  * debian/patches/ask-for-reboot.diff: Ask for a reboot after domain join
since it is necessary before domain graphical logins (LP: #352934)
  * Removed debian/patches/graceful_dbus_restart.diff since it is not
sufficient and we now ask for a reboot
  * debian/patches/abstractions-cleanup.diff: Use more precision when removing
likewise mods from appamor.d/abstractions/nameservice file, to avoid
very destructive cleanup (LP: #354498)
  * Added debian/patches/autoconf-ftbfs-fix.diff to fix FTBFS


** Attachment added: likewise-open_4.1.2982-0ubuntu2.debdiff
   
http://launchpadlibrarian.net/25036530/likewise-open_4.1.2982-0ubuntu2.debdiff

-- 
Leaving a domain breaks NetworkManager DHCP
https://bugs.launchpad.net/bugs/354498
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open 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 354498] Re: Leaving a domain breaks NetworkManager DHCP

2009-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package likewise-open - 4.1.2982-0ubuntu2

---
likewise-open (4.1.2982-0ubuntu2) jaunty; urgency=low

  * debian/patches/ask-for-reboot.diff: Ask for a reboot after domain join
since it is necessary before domain graphical logins (LP: #352934)
  * Removed debian/patches/graceful_dbus_restart.diff since it is not
sufficient and we now ask for a reboot
  * debian/patches/abstractions-cleanup.diff: Use more precision when removing
likewise mods from appamor.d/abstractions/nameservice file, to avoid
very destructive cleanup (LP: #354498)
  * Added debian/patches/autoconf-ftbfs-fix.diff to fix FTBFS

 -- Thierry Carrez thierry.car...@ubuntu.com   Wed, 08 Apr 2009
17:32:39 +0200

** Changed in: likewise-open (Ubuntu)
   Status: In Progress = Fix Released

-- 
Leaving a domain breaks NetworkManager DHCP
https://bugs.launchpad.net/bugs/354498
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open 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 352934] Re: Reboot needed after domainjoin before login into Gnome as a domain user

2009-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package likewise-open - 4.1.2982-0ubuntu2

---
likewise-open (4.1.2982-0ubuntu2) jaunty; urgency=low

  * debian/patches/ask-for-reboot.diff: Ask for a reboot after domain join
since it is necessary before domain graphical logins (LP: #352934)
  * Removed debian/patches/graceful_dbus_restart.diff since it is not
sufficient and we now ask for a reboot
  * debian/patches/abstractions-cleanup.diff: Use more precision when removing
likewise mods from appamor.d/abstractions/nameservice file, to avoid
very destructive cleanup (LP: #354498)
  * Added debian/patches/autoconf-ftbfs-fix.diff to fix FTBFS

 -- Thierry Carrez thierry.car...@ubuntu.com   Wed, 08 Apr 2009
17:32:39 +0200

** Changed in: likewise-open (Ubuntu)
   Status: In Progress = Fix Released

-- 
Reboot needed after domainjoin before login into Gnome as a domain user
https://bugs.launchpad.net/bugs/352934
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open 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 352170] Re: openvpn - openssl-vulnkey:24: DeprecationWarning: the sha module is deprecated; use the hashlib module instead import sha

2009-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package openssl-blacklist - 0.4.2ubuntu1

---
openssl-blacklist (0.4.2ubuntu1) jaunty; urgency=low

  * openssl-vulnkey: Use hashlib python module (instead of sha module) to
avoid a DeprecationWarning when starting up openvpn (LP: #352170)

 -- Thierry Carrez thierry.car...@ubuntu.com   Mon, 06 Apr 2009
14:35:47 +0200

** Changed in: openssl-blacklist (Ubuntu)
   Status: Confirmed = Fix Released

-- 
openvpn - openssl-vulnkey:24: DeprecationWarning: the sha module is deprecated; 
use the hashlib module instead   import sha
https://bugs.launchpad.net/bugs/352170
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn 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 357939] [NEW] package openssh-server 1:5.1p1-5ubuntu1 failed to install/upgrade: subprocess pre-removal script returned error exit status 2

2009-04-08 Thread Skye
Public bug reported:

hardware crashed (pre-existing motherboard issue) while installing
openssh-server.. tried running sudo dpkg --configure -a on reboot,

dpkg (subprocess): unable to execute post-installation script: Exec format error
dpkg: error processing openssh-server (--configure):
 subprocess post-installation script returned error exit status 2
Errors were encountered while processing:
 openssh-server


tried running apt-get remove openssh-server, that also failed.

ProblemType: Package
Architecture: amd64
DistroRelease: Ubuntu 9.04
ErrorMessage: subprocess pre-removal script returned error exit status 2
Package: openssh-server 1:5.1p1-5ubuntu1
SourcePackage: openssh
Title: package openssh-server 1:5.1p1-5ubuntu1 failed to install/upgrade: 
subprocess pre-removal script returned error exit status 2
Uname: Linux 2.6.28-11-generic x86_64

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


** Tags: amd64 apport-package

-- 
package openssh-server 1:5.1p1-5ubuntu1 failed to install/upgrade: subprocess 
pre-removal script returned error exit status 2
https://bugs.launchpad.net/bugs/357939
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh 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 357939] Re: package openssh-server 1:5.1p1-5ubuntu1 failed to install/upgrade: subprocess pre-removal script returned error exit status 2

2009-04-08 Thread Skye

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/25052438/Dependencies.txt

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/25052439/DpkgTerminalLog.gz

-- 
package openssh-server 1:5.1p1-5ubuntu1 failed to install/upgrade: subprocess 
pre-removal script returned error exit status 2
https://bugs.launchpad.net/bugs/357939
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh 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 357994] Re: mount.cifs crashed with SIGSEGV in main()

2009-04-08 Thread Apport retracing service
*** This bug is a duplicate of bug 356009 ***
https://bugs.launchpad.net/bugs/356009

** Attachment removed: CoreDump.gz
   http://launchpadlibrarian.net/25064326/CoreDump.gz

** Attachment removed: Dependencies.txt
   http://launchpadlibrarian.net/25064327/Dependencies.txt

** Attachment removed: Disassembly.txt
   http://launchpadlibrarian.net/25064328/Disassembly.txt

** Attachment removed: ProcMaps.txt
   http://launchpadlibrarian.net/25064329/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   http://launchpadlibrarian.net/25064330/ProcStatus.txt

** Attachment removed: Registers.txt
   http://launchpadlibrarian.net/25064331/Registers.txt

** This bug has been marked a duplicate of bug 356009
   mount.cifs crashed with SIGSEGV in main() in the absence of command-line 
parameters

** Visibility changed to: Public

** Tags removed: need-i386-retrace

-- 
mount.cifs crashed with SIGSEGV in main()
https://bugs.launchpad.net/bugs/357994
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 358035] [NEW] can't create file: permission denied by apparmor

2009-04-08 Thread OlaJi
Public bug reported:

Upgraded from Ubuntu 8.10 to 9.04 and lost all network connections.
Found out that it was it was a problem with dhcp3-client. See syslog
list:

Apr  8 22:55:48 idefix dhclient: Can't create 
/usr/local/var/run/dhclient-eth1.pid: Permission denied
Apr  8 22:55:48 idefix kernel: [  190.757114] type=1503 
audit(1239224148.534:16): operation=inode_create requested_mask=a:: 
denied_mask=a:: fsuid=0 name=/usr/local/var/run/dhclient-eth1.pid pid=3618 
profile=/sbin/dhclient3
Apr  8 22:55:52 idefix dhclient: DHCPDISCOVER on eth1 to 255.255.255.255 port 
67 interval 3
Apr  8 22:55:53 idefix dhclient: DHCPOFFER of 192.168.0.4 from 192.168.0.1
Apr  8 22:55:53 idefix dhclient: DHCPREQUEST of 192.168.0.4 on eth1 to 
255.255.255.255 port 67
Apr  8 22:55:55 idefix dhclient: DHCPACK of 192.168.0.4 from 192.168.0.1
Apr  8 22:55:55 idefix dhclient: execve 
(/usr/local/libexec/nm-dhcp-client.action, ...): Permission denied
Apr  8 22:55:55 idefix dhclient: can't create 
/usr/local/var/lib/dhcp3/dhclient-eth1.lease: No such file or directory
Apr  8 22:55:55 idefix dhclient: bound to 192.168.0.4 -- renewal in 34096 
seconds.
Apr  8 22:55:55 idefix dhclient: Can't create 
/usr/local/var/run/dhclient-eth1.pid: Permission denied
Apr  8 22:55:55 idefix kernel: [  197.668930] type=1503 
audit(1239224155.446:17): operation=inode_permission requested_mask=x:: 
denied_mask=x:: fsuid=0 name=/usr/local/libexec/nm-dhcp-client.action 
pid=3620 profile=/sbin/dhclient3
Apr  8 22:55:55 idefix kernel: [  197.669691] type=1503 
audit(1239224155.446:18): operation=inode_create requested_mask=a:: 
denied_mask=a:: fsuid=0 name=/usr/local/var/run/dhclient-eth1.pid pid=3618 
profile=/sbin/dhclient3
Apr  8 22:55:57 idefix NetworkManager: info  Device 'eth0' DHCP transaction 
took too long (45s), stopping it. 
Apr  8 22:55:57 idefix NetworkManager: info  eth0: canceled DHCP transaction, 
dhcp client pid 3588 
Apr  8 22:55:57 idefix NetworkManager: info  Activation (eth0) Stage 4 of 5 
(IP Configure Timeout) scheduled... 
Apr  8 22:55:57 idefix NetworkManager: info  Activation (eth0) Stage 4 of 5 
(IP Configure Timeout) started... 
Apr  8 22:55:57 idefix NetworkManager: info  (eth0): device state change: 7 
- 9 
Apr  8 22:55:57 idefix NetworkManager: info  Marking connection 'Auto eth0' 
invalid. 


When I disabled the apparmor profile /sbin/dhclient3 the network
connection with NetworkManager works again. I don't know if this is a
bug in dhcp3 or apparmor, but its a bug that breaks the system. It's
hard to get back on track without a network connection...

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
Package: dhcp3-client 3.1.1-5ubuntu8
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: dhcp3
Uname: Linux 2.6.28-11-generic i686

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


** Tags: apport-bug i386

-- 
can't create file: permission denied by apparmor
https://bugs.launchpad.net/bugs/358035
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in ubuntu.

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


[Bug 358035] Re: can't create file: permission denied by apparmor

2009-04-08 Thread OlaJi

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/25078761/Dependencies.txt

-- 
can't create file: permission denied by apparmor
https://bugs.launchpad.net/bugs/358035
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in ubuntu.

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


[Bug 357998] Re: openssh-client (amd64) can't login after upgrade to jaunty

2009-04-08 Thread Colin Watson
Could you post ssh -vvv output please?

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

-- 
openssh-client (amd64) can't login after upgrade to jaunty
https://bugs.launchpad.net/bugs/357998
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh 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 358035] Re: can't create file: permission denied by apparmor

2009-04-08 Thread Jamie Strandboge
Thank you for using Ubuntu and taking the time to report a bug. In
examining your syslog output, it is clear that you are not running
Ubuntu packages, have installed software into non-standard locations
(file in /usr/local), or have symlinked files in /var to /usr/local. To
workaround this, update /etc/apparmor.d/sbin.dhclient to give access to
the necessary files, and restart apparmor with:

$ sudo /etc/init.d/apparmor force-reload

** Changed in: dhcp3 (Ubuntu)
   Status: New = Invalid

-- 
can't create file: permission denied by apparmor
https://bugs.launchpad.net/bugs/358035
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in ubuntu.

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


[Bug 357998] Re: openssh-client (amd64) can't login after upgrade to jaunty

2009-04-08 Thread Hadmut Danisch
ok, is attached. btw, the ssh login fails even if I try login to
localhost, i.e. to the ubuntu machine itself.

I had an RSA key only, the one that failed ufter upgrade.
I could workaround by generating an dsa key, which works. 

Might be related to debian bug #357998

I am not really sure whether this really caused by the AMD64
architecture, it could also be a property of the rsa key, which causes
trouble.

regards


 

** Attachment added: ssh -vvv output
   http://launchpadlibrarian.net/25080582/ssh-vvv

-- 
openssh-client (amd64) can't login after upgrade to jaunty
https://bugs.launchpad.net/bugs/357998
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh 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 357998] Re: openssh-client (amd64) can't login after upgrade to jaunty

2009-04-08 Thread Colin Watson
Likely, though not certain, to be a bug in openssl rather than openssh.

** Package changed: openssh (Ubuntu) = openssl (Ubuntu)

-- 
openssh-client (amd64) can't login after upgrade to jaunty
https://bugs.launchpad.net/bugs/357998
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh 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 357998] Re: openssh-client (amd64) can't login after upgrade to jaunty

2009-04-08 Thread Colin Watson
$ openssl errstr 0407006A
error:0407006A:rsa routines:RSA_padding_check_PKCS1_type_1:block type is not 01

-- 
openssh-client (amd64) can't login after upgrade to jaunty
https://bugs.launchpad.net/bugs/357998
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh 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 236640] Re: iSCSI install fails under hardy

2009-04-08 Thread Brian Murray
** Also affects: open-iscsi (Ubuntu Jaunty)
   Importance: Undecided
 Assignee: Dustin Kirkland (kirkland)
   Status: New

-- 
iSCSI install fails under hardy
https://bugs.launchpad.net/bugs/236640
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to open-iscsi 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