[Bug 303458] Re: segfault in pam_smbpass.so

2009-03-22 Thread Sam Morris
Can we *please* get some triage on this bug? It has now made three
laptops where I work inoperable to those who do not know to disable the
pam_smpass module.

-- 
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 129091] Re: fsck should not fail on missing filesystem

2009-03-22 Thread Jaime Frutos Morales
If you don't want a filesystem on /etc/fstab to be checked by fsck on
boot, just put a 0 in the sixth field (last one).

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

-- 
fsck should not fail on missing filesystem
https://bugs.launchpad.net/bugs/129091
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.

-- 
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 139217] Re: dhcp fails for gateway on different subnet

2009-03-22 Thread Rodney Berriman
It still doesn't seem to work on Optus ADSL (Australia), and I think the
reason is that the creation of the host route is conditional on the
netmask:

/sbin/dhclient-script:198: 
   if [ $new_subnet_mask == 255.255.255.255 ]; then ...

because the interface is given an IP address with subnet 255.255.255.0, and a 
gateway address that
is not in this range.

Why not just remove the conditional line?
No harm in (trying to) creating a host route to the gateway, even if it is 
redundant?

-- 
dhcp fails for gateway on different subnet
https://bugs.launchpad.net/bugs/139217
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 139217] Re: dhcp fails for gateway on different subnet

2009-03-22 Thread Rodney Berriman
reading the first post more carefully, I see that the netmask
conditional is also the problem in the original report:

  new_subnet_mask='255.255.255.128'

therefore the host route to the gateway is not added because the netmask
is not 255.255.255.0


While waiting for this bug report to be addressed, a suggested solution is to 
add a dhclient exit-hook:

create a file gateway in /etc/dhcp3/dhclient-exit-hooks.d, containing
this text:

for router in $new_routers; do
  route add -host $router dev $interface
  route add default dev $interface gw $router $metric_arg
done

-- 
dhcp fails for gateway on different subnet
https://bugs.launchpad.net/bugs/139217
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