[Bug 1032704] [NEW] exportfs tool does not support ipv6 addresses

2012-08-03 Thread Greg Franklin
Public bug reported:

The exportfs tool doesn't support ipv6 addresses.

For example, the following does not work:

exportfs -o rw 2001:db8:9:e54::/64:/srv/export

The above command returns the following error:

exportfs: Invalid exporting option: 2001

If we were exporting to a single host, it would be possible to use the
hostname.  However, since we're trying to export to a whole subnet there
is no way to do it using the exportfs utility.

It does work if you have an ipv6 subnet in /etc/exports but we're using
it with corosync/pacemaker which calls the exportfs utility directly.

** Affects: nfs-utils (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1032704

Title:
  exportfs tool does not support ipv6 addresses

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/1032704/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 914823] [NEW] Unable to preseed dhcp-range in provisioning server

2012-01-11 Thread Greg Franklin
Public bug reported:

I'm attempting to configure ubuntu-orchestra-provisioning-server using
puppet.  To do this I'm preseeding the answers to all the debconf
questions.

Unfortunatly, the preseeded response to the ubuntu-orchestra-
provisioning-server/dnsmasq-dhcp-range is being ignored.

As far as I can tell, this is because 
ubuntu-orchestra-provisioning-server.config is calling 
  db_set ubuntu-orchestra-provisioning-server/dnsmasq-dhcp-range
which sets the response to a default value regardless of whether its already 
set.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/914823

Title:
  Unable to preseed dhcp-range in provisioning server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/orchestra/+bug/914823/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 774429] Re: sympa database creation fails for mysql

2011-05-12 Thread Greg Franklin
** Bug watch added: Debian Bug tracker #604700
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604700

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/774429

Title:
  sympa database creation fails for mysql

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 664834] Re: bzr builddeb doesn't support multiple upstream tarball in 3.0 (quilt) format

2010-10-26 Thread Greg Franklin
The problem is that bzr-builddeb does not copy the the required tarball
into the build-area.

It works if the .orig-newlib.tar.gz file is manually copied before
running bzr-builddeb.

-- 
bzr builddeb doesn't support multiple upstream tarball in 3.0 (quilt) format
https://bugs.launchpad.net/bugs/664834
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 54918] Re: DNS-lookup to AAAA (IPv6) doesn't seem to work

2010-07-16 Thread Greg Franklin
As far as I've found, there are two points where IPv6 Fails.

Firstly, in the use of gethostbyname.  You'll need to install
libsocket6-perl.  I tried getnameinfo, but for some reason that didn't
work so I've used getaddrinfo:

=== modified file 'bin/BackupPC_dump'
--- bin/BackupPC_dump   2008-06-30 11:20:59 +
+++ bin/BackupPC_dump   2010-07-16 13:54:27 +
@@ -91,6 +91,7 @@
 use File::Path;
 use File::Find;
 use Getopt::Std;
+use Socket6;
 
 ###
 # Initialize
@@ -247,7 +248,8 @@
 } else {
 $host = $client;
 }
-if ( !defined(gethostbyname($host)) ) {
+
+if ( defined(getaddrinfo($host,22)) ) {
 #
 # Ok, NS doesn't know about it.  Maybe it is a NetBios name
 # instead.

Secondly, is the use of ping in CheckHostAlive in lib/BackupPC/Lib.pm
If you are IPv6 only, you can change $Conf{PingPath} to /bin/pin6 in config.pl
The alternative is to change $Conf{PingCmd} to '' in config.pl which skips the 
ping test.

-- 
DNS-lookup to  (IPv6) doesn't seem to work
https://bugs.launchpad.net/bugs/54918
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to backuppc 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 54918] Re: DNS-lookup to AAAA (IPv6) doesn't seem to work

2010-07-16 Thread Greg Franklin
As far as I've found, there are two points where IPv6 Fails.

Firstly, in the use of gethostbyname.  You'll need to install
libsocket6-perl.  I tried getnameinfo, but for some reason that didn't
work so I've used getaddrinfo:

=== modified file 'bin/BackupPC_dump'
--- bin/BackupPC_dump   2008-06-30 11:20:59 +
+++ bin/BackupPC_dump   2010-07-16 13:54:27 +
@@ -91,6 +91,7 @@
 use File::Path;
 use File::Find;
 use Getopt::Std;
+use Socket6;
 
 ###
 # Initialize
@@ -247,7 +248,8 @@
 } else {
 $host = $client;
 }
-if ( !defined(gethostbyname($host)) ) {
+
+if ( defined(getaddrinfo($host,22)) ) {
 #
 # Ok, NS doesn't know about it.  Maybe it is a NetBios name
 # instead.

Secondly, is the use of ping in CheckHostAlive in lib/BackupPC/Lib.pm
If you are IPv6 only, you can change $Conf{PingPath} to /bin/pin6 in config.pl
The alternative is to change $Conf{PingCmd} to '' in config.pl which skips the 
ping test.

-- 
DNS-lookup to  (IPv6) doesn't seem to work
https://bugs.launchpad.net/bugs/54918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 304437] Re: null_callback: error code 0x12

2009-07-23 Thread Greg Franklin
Looks like this is fixed in 2.4.11

http://www.openldap.org/its/?findid=5781

Any chance of a backport of this fix to Hardy?

-- 
null_callback: error code 0x12
https://bugs.launchpad.net/bugs/304437
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap2.3 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 304437] Re: null_callback: error code 0x12

2009-07-23 Thread Greg Franklin
Looks like this is fixed in 2.4.11

http://www.openldap.org/its/?findid=5781

Any chance of a backport of this fix to Hardy?

-- 
null_callback: error code 0x12
https://bugs.launchpad.net/bugs/304437
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs