[Bug 40189] Re: autofs needs to be restarted to pick up some shares

2012-04-12 Thread Vernon Tang
** Also affects: autofs5 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: autofs5 (Ubuntu)
   Status: New = Confirmed

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

Title:
  autofs needs to be restarted to pick up some shares

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/40189/+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 799297] [NEW] package dahdi-dkms 1:2.3.0.1 dfsg-2ubuntu2 failed to install/upgrade: dahdi kernel module failed to build

2011-06-18 Thread Vernon Cole
Public bug reported:

Binary package hint: dahdi-linux

failed on upgrade to 11.04 -- so loaded 11.04 from cd, installed
asterisk, failed again.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: dahdi-dkms 1:2.3.0.1+dfsg-2ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Sat Jun 18 20:09:51 2011
ErrorMessage: dahdi kernel module failed to build
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
PackageArchitecture: all
PackageVersion: 1:2.3.0.1+dfsg-2ubuntu2
SourcePackage: dahdi-linux
Title: package dahdi-dkms 1:2.3.0.1+dfsg-2ubuntu2 failed to install/upgrade: 
dahdi kernel module failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: dahdi-linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 natty

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

Title:
  package dahdi-dkms 1:2.3.0.1 dfsg-2ubuntu2 failed to install/upgrade:
  dahdi kernel module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dahdi-linux/+bug/799297/+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 799297] Re: package dahdi-dkms 1:2.3.0.1 dfsg-2ubuntu2 failed to install/upgrade: dahdi kernel module failed to build

2011-06-18 Thread Vernon Cole
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dahdi-linux in Ubuntu.
https://bugs.launchpad.net/bugs/799297

Title:
  package dahdi-dkms 1:2.3.0.1 dfsg-2ubuntu2 failed to install/upgrade:
  dahdi kernel module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dahdi-linux/+bug/799297/+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 305646] Re: PerlSetEnv not working consistently in libapache2-mod-perl

2009-10-12 Thread Vernon
I've tested this again in Ubuntu 9.04 using libapache2-mod-perl2 2.0.4-5ubuntu1,
and the problem seems to have been resolved.

The PerlSetEnv is actually working before any perl block is used and
before PerlRequire (as early as possible) which is good!

I guess this can now be closed.

-- 
PerlSetEnv not working consistently in libapache2-mod-perl
https://bugs.launchpad.net/bugs/305646
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libapache2-mod-perl2 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 331444] Re: dhclient3-apparmor ifup script gets stuck if apparmor is not installed

2009-02-19 Thread Vernon Tang

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

-- 
dhclient3-apparmor ifup script gets stuck if apparmor is not installed
https://bugs.launchpad.net/bugs/331444
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 305646] [NEW] PerlSetEnv not working consistently in libapache2-mod-perl

2008-12-05 Thread Vernon
Public bug reported:

Binary package hint: libapache2-mod-perl2

PerlSetEnv does not work correctly, unless it appears after a Perl/Perl 
block.
This may also affect PerlPassEnv, SetEnv, or other directives.
This has been reported elsewhere on the web but no-one seems to take note.

Here's how to duplicate...

Test1 - In http.conf:

PerlModule Data::Dumper
PerlSetEnv BOB hello
Perl
warn Data::Dumper::Dumper(\%ENV);
/Perl

Ok, so when we run apache2ctl configtest we get:
$VAR1 = {
  'PATH' = 
'/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games',
  'MOD_PERL_API_VERSION' = '2',
  'MOD_PERL' = 'mod_perl/2.0.4'
};
Syntax OK


As you can see the environment variable BOB does not exist. So, next test...

Test2 - In http.conf:

PerlModule Data::Dumper
Perl

/Perl
PerlSetEnv BOB hello
Perl
warn Data::Dumper::Dumper(\%ENV);
/Perl

Note the empty Perl/Perl block with a blank line! (The blank line is 
important)
Ok, so when we run apache2ctl configtest we get:
$VAR1 = {
  'BOB' = 'hello',
  'PATH' = 
'/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games',
  'MOD_PERL_API_VERSION' = '2',
  'MOD_PERL' = 'mod_perl/2.0.4'
};
Syntax OK


Suddenly the PerlSetEnv works! PerlSetEnv should work without the need to 
include a blank Perl/Perl block.
This is particularly important because scripts called with PerlRequire and 
other directives (PerlConfigRequire PerlPostConfigRequire) will NOT get the 
correct %ENV variables passed on to them.

This was tested on:
Linux ubuntu 2.6.27-9-generic (Ubuntu 8.10)
libapache2-mod-perl2 2.0.4-1ubuntu1
apache2 2.2.9-7ubuntu3

** Affects: libapache2-mod-perl2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
PerlSetEnv not working consistently in libapache2-mod-perl
https://bugs.launchpad.net/bugs/305646
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libapache2-mod-perl2 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