Re: [Bug 1568] Re: nut takes too long to start

2008-12-18 Thread Arnaud Quette
2008/12/15 Laurent Dinclaux:
 What workaround ?

not sure about what Daniel refers to!
but as told prev, this is fixed in the upcoming NUT 2.4.0 (I'll
release the first -pre1 for Christmas ; the final being due for ~ 1
month later). this release will be included in Jaunty...
still no time for backporting though :-(

cheers,
Arnaud

-- 
nut takes too long to start
https://bugs.launchpad.net/bugs/1568
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 288616] Re: Tomcat 6 fails to start during install

2008-12-18 Thread Thierry Carrez
jsvc (from commons-daemon) still can't find a JVM: it statically looks
for jvm.cfg, then tries various well-known libjvm.so locations (but
unfortunately not the server one). It needs to be taught about that
one so that it can find it.

** Also affects: commons-daemon (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: java-common (Ubuntu)
   Status: New = Invalid

** Changed in: java-common (Ubuntu Intrepid)
   Status: New = Invalid

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

** Changed in: tomcat6 (Ubuntu Intrepid)
   Status: New = Invalid

** Changed in: commons-daemon (Ubuntu)
 Assignee: (unassigned) = Thierry Carrez (tcarrez)
   Status: New = Confirmed

** Changed in: commons-daemon (Ubuntu)
   Importance: Undecided = Low

-- 
Tomcat 6 fails to start during install
https://bugs.launchpad.net/bugs/288616
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tomcat6 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 282298] Re: [SRU] Intrepid: No Access to NAS (samba=2.2.x) shares any more

2008-12-18 Thread cosbear
I have added the repo for the fix to my sources and downloaded and
installed all the updates but still cannot access any samba shares on
Ubuntu 8.10, Xubuntu 8.10 or the Mint based on 8.10, on both the 32 and
64 bit versions.  This includes Xubuntu 8.04 installs which I upgraded
to 8.10.  They had access to all shares before but not after the
upgrade.  Nothing else has changed on my lan as concerns hardware or
settings.  The only change was the upgrades.  The installs I have of
Xubuntu 8.04 still can access all my samba shares from boxes running XP
and from linux boxes running samba.  The Klikit-linux RC3 based on
Kubuntu Hardy can also access all the shares.  I can see the other samba
shares with 8.10 installs, I just cannot access them at all.  I have
simple sharing set up on all the boxes on my lan, and have never used
any passwords or users.  I have several boxes set up in my office and 1
in my living room.  They are connected with wired ethernet together with
two gigabit network switches one of which is connected to a wireless
router connected to a cable modem.  All use manually set dedicated IP
addresses.  I have tried using DHCP as well but no change.  The
workgroup on all shares is set to workgroup.

The problem is not in samba from what I can tell as all shares can
access shares on the 8.10 boxes with read/write permissions.  The
problem appears to be in smbclient or it's dependencies.  I have read
some conjecture in various places about the problem being with this or
that file manager, but I have the same problem with dolphin, konqueror,
and nautilus.  Nautilus gives this error:

Sorry, could not display all the contents of Windows shares on
mediaserver: DBus error org.freedesktop.DBus.Error.NoReply: Did not
receive a reply. Possible causes include: the remote application did not
send a reply, the message bus security policy blocked the reply, the
reply timeout expired, or the network connection was broken.

If there is not a fix of some sort soon I'm giving up on 8.10 and going
back to 8.04 which works perfectly for me.  I hate to do it though
because otherwise I really like 8.10.  I'm really at wits end with this
issue.  Later... cos

-- 
[SRU] Intrepid: No Access to NAS (samba=2.2.x) shares any more
https://bugs.launchpad.net/bugs/282298
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 42477] Re: [Dapper LiveCD Beta2] dhclient keeps asking for IP on eth1

2008-12-18 Thread Jörg Höhle
I'm not the OP, and do not have HW with WLAN anymore, so I cannot report
on the current state. In Ubuntu Gutsy, dhcdb (sp?) had replaced dhclient
and was launched only on active/configured interfaces, so this bug did
not affect Gutsy at all. Later, Hardy and Intrepid reinserted dhclient,
so who knows?

-- 
[Dapper LiveCD Beta2] dhclient keeps asking for IP on eth1
https://bugs.launchpad.net/bugs/42477
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 309339] [NEW] kadmind will not listen on IPv6 ports

2008-12-18 Thread squiggleslash
Public bug reported:

kadmind, as issued with Ubuntu 8.04 LTS, will not listen on IPv6 ports.
a netstat -l -p -6 will not show it as listening. kdc does not have the
same problem, it works fine.

Looking at the source code, it appears that the version of kadmind being
shipped with Ubuntu 8.04 LTS is not eyepeasixificationalized (!).
krb5-1.6.dfsg.3~beta1/src/kadmin/server/ovsec_kadmd.c defines a
structure, addr, which is the basic sockaddr_in rather than
sockaddr_in6, used to bind to the kerberos-adm port, and the code that
uses it is:

 memset(addr, 0, sizeof(addr));
 addr.sin_family = AF_INET;
 addr.sin_addr.s_addr = INADDR_ANY;
 addr.sin_port = htons(params.kadmind_port);

 if ((s = socket(AF_INET, SOCK_STREAM, 0))  0) {
  const char *e_txt = krb5_get_error_message (context, ret);
  krb5_klog_syslog(LOG_ERR, Cannot create TCP socket: %s,
   e_txt);
  fprintf(stderr, Cannot create TCP socket: %s,
  e_txt);
  kadm5_destroy(global_server_handle);
  krb5_klog_close(context);   
  exit(1);
 }

 if ((schpw = socket(AF_INET, SOCK_DGRAM, 0))  0) {
 const char *e_txt = krb5_get_error_message (context, ret);
 krb5_klog_syslog(LOG_ERR,
  cannot create simple chpw socket: %s,
  e_txt);
 fprintf(stderr, Cannot create simple chpw socket: %s,
 e_txt);
 kadm5_destroy(global_server_handle);
 krb5_klog_close(context);
 exit(1);
 }

There is no IPv6 code in the thing at all. I'm assuming there's no
elaborate include file somewhere that redefines sockaddr_in and AF_INET
to sockaddr_in6 and AF_INET6 respectively (and I don't know if such a
thing would work anyway, I'm reading conflicting documentation on
whether that would result in an IPv6-only app.)

Without this fixed, the remote admin daemon is essentially not useful on
a network that's primarily IPv6.

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

-- 
kadmind will not listen on IPv6 ports
https://bugs.launchpad.net/bugs/309339
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 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 249337] Re: bash get_cword: command not found

2008-12-18 Thread emil.s
I can confirm this.

On a completely new installation of Intrepid:
r...@sandnabba: ~ # /etc/init.d/postfix *tab-tab* bash: get_cword: command not 
found
bash: get_cword: command not found

abort   check   flush   reload  start   stop
r...@sandnabba: ~ # /etc/init.d/postfix

Postfix: Version: 2.5.5-1
r...@sandnabba: ~ # bash --version 
GNU bash, version 3.2.39(1)-release (i486-pc-linux-gnu)

-- 
bash get_cword: command not found
https://bugs.launchpad.net/bugs/249337
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix 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 307397] Re: please update Apache to 2.2.10

2008-12-18 Thread Launchpad Bug Tracker
This bug was fixed in the package apache2 - 2.2.11-1ubuntu1

---
apache2 (2.2.11-1ubuntu1) jaunty; urgency=low

  * Merge from debian unstable, remaining changes:
- debian/{control, rules}: enable PIE hardening.
- debian/{control, rules, apache2.2-common.ufw.profile}: add ufw profiles.

apache2 (2.2.11-1) unstable; urgency=low

  [Thom May]
  * New Upstream Version (Closes: #508186, LP: #307397)
- Contains rewritten shmcb code which should fix alignment problems on
  alpha (Closes: #419720).
- Notable new features: chroot support, mod_proxy improvements.

  [Ryan Niebur]
  * fix segfault in ab when being verbose on ssl sites (Closes: #495982)
  * remove trailing slash for DocumentRoot (Closes: #495110)

 -- Chuck Short zul...@ubuntu.com   Mon, 15 Dec 2008 00:06:50 +

** Changed in: apache2 (Ubuntu)
   Status: Triaged = Fix Released

-- 
please update Apache to 2.2.10
https://bugs.launchpad.net/bugs/307397
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 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 288616] Re: Tomcat 6 fails to start during install

2008-12-18 Thread Thierry Carrez
Hm, that will not be sufficient. Once jsvc is fixed, Tomcat finally needs the 
following defined in java.security to start:
  policy.expandProperties=true
  policy.allowSystemProperty=true
And java.security is also a conffile, so this is also available only after 
configuration. Not sure we have a workaround for that one.

-- 
Tomcat 6 fails to start during install
https://bugs.launchpad.net/bugs/288616
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tomcat6 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 301542] Re: Bypass auth checks in Nagios (CVE-2008-5027, CVE-2008-5028)

2008-12-18 Thread Launchpad Bug Tracker
This bug was fixed in the package nagios3 - 3.0.6-1ubuntu1

---
nagios3 (3.0.6-1ubuntu1) jaunty; urgency=low

  * Merge from debian unstable, remaining changes:
+ debian/nagios3-common.prerm:
  - Purge fails if /etc/nagios3/apache2.conf is missing.
+ Update maintainer according to spec.
  *  Closes LP: #301542
  * Merge done by Bhavani Shankar, thanks (LP:  #308434)

nagios3 (3.0.6-1) unstable; urgency=high

  * New upstream version
- Even more fixes for CVE-2008-5028
  * Urgency high for security fixes
  * Add ${shlibs:Depends} (Fixes lintian error, as the epn debugger
should depend on libc)
  * Add ${misc:Depends} to binaries (Fixes lintian warning)

nagios3 (3.0.5-1) unstable; urgency=low

  [ Christian Perrier ]
  * Fix pending l10n issues. Debconf translations:
- Italian. Closes: #505813
- Polish. Closes: #506851

  [ Alexander Wirt ]
  * New upstream version
- Adds security fix for cmd.cgi (Closes: #504894)
  This security problem is referenced as CVE-2008-5028 and SA32610

 -- Chuck Short zul...@ubuntu.com   Mon, 08 Dec 2008 10:51:56 +

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

-- 
Bypass auth checks in Nagios (CVE-2008-5027, CVE-2008-5028)
https://bugs.launchpad.net/bugs/301542
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios3 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 274069] Re: error send_packet:message too long

2008-12-18 Thread joelholdsworth
As people have said this bug seems to be similar to #61989, and it
affects me and my belkin router. Note that this was not a problem in
Hardy!

-- 
error send_packet:message too long
https://bugs.launchpad.net/bugs/274069
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


Re: [Bug 309339] [NEW] kadmind will not listen on IPv6 ports

2008-12-18 Thread Russ Allbery
squiggleslash squigglesl...@yahoo.com writes:

 Looking at the source code, it appears that the version of kadmind being
 shipped with Ubuntu 8.04 LTS is not eyepeasixificationalized (!).
 krb5-1.6.dfsg.3~beta1/src/kadmin/server/ovsec_kadmd.c defines a
 structure, addr, which is the basic sockaddr_in rather than
 sockaddr_in6, used to bind to the kerberos-adm port, and the code that
 uses it is:

I believe that's correct and upstream does not (yet, at least) support the
kadmin protocol over IPv6.

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/

-- 
kadmind will not listen on IPv6 ports
https://bugs.launchpad.net/bugs/309339
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 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 264943] Re: gvfsd-smb crashed with SIGSEGV in strlen()

2008-12-18 Thread rossjenkins
Thierry:

Can you bulid a new package in your PPA for Intrepid with this latest
patch from Kai? I'll test ASAP once the package is ready.

-- 
gvfsd-smb crashed with SIGSEGV in strlen()
https://bugs.launchpad.net/bugs/264943
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 309160] Re: openssh public key auth broken if one has many keys but only in X11

2008-12-18 Thread noah dain
putty (0.60-3) fails with the same error (too many authentication
errors).

putty is not configured at all on this machine so it should be in passwd
auth mode.  However, ss soon as I put in my login name it comes up with
the error.

-- 
openssh public key auth broken if one has many keys but only in X11
https://bugs.launchpad.net/bugs/309160
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 185524] Re: ssh tunnel dies unexpectedly several times a day

2008-12-18 Thread ryan.catherman
I've seen the same behavior.  For me, it was always gutsy on both ends,
but I also see it with hardy on both ends.  Same behavior as posted.
After some time, for me usually either large amounts of consistent data
or long periods of idle time, network dumping shows that traffic one
direction stops working, but continues to work in the other direction.

I don't have any other data or logging to offer, but thought I'd chime
in that I have seen it before and could never find anyone else who had
posted the problem.  I always assumed it was because most people are
satisfied with -L support and don't take advantage of -w support.

-- 
ssh tunnel dies unexpectedly several times a day
https://bugs.launchpad.net/bugs/185524
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 286828] Re: Access to samba 3.0.24-3.0.25 shares using CIFS is broken on 8.10

2008-12-18 Thread Steve Langasek
Accepted into intrepid-proposed, please test and give feedback here.
Please see https://wiki.ubuntu.com/Testing/EnableProposed for
documentation how to enable and use -proposed. Thank you in advance!

** Tags added: verification-needed

-- 
Access to samba 3.0.24-3.0.25 shares using CIFS is broken on 8.10
https://bugs.launchpad.net/bugs/286828
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 309160] Re: openssh public key auth broken if one has many keys but only in X11

2008-12-18 Thread noah dain
workaround/fix:
- move all keys into subdirectories and update config to reflect changes.
- even with multiple keys in subdirectories it does not try the wrong keys.

hypothesis:
- the ssh client looks in ~/.ssh and tries any files it deems to be keys, even 
when 'config' is configured explicitly with the appropriate key.  Fortunately, 
it does not recurse into subdirs.n

other observations:
- the behaviour persists without a config file and specifying the key on the 
command line (ie. ssh -i keyfile host)
- this fixes putty, also (must have been patched to use ~/.ssh at some time)

-- 
openssh public key auth broken if one has many keys but only in X11
https://bugs.launchpad.net/bugs/309160
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 306464] Re: bad path to configuration file

2008-12-18 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 308903 ***
https://bugs.launchpad.net/bugs/308903

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 308903, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.

** Changed in: bacula (Ubuntu)
   Status: New = Triaged

** This bug has been marked a duplicate of bug 308903
   The bacula-dir.conf file is not present when installing Bacula

-- 
bad path to configuration file
https://bugs.launchpad.net/bugs/306464
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula 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 309539] [NEW] firefox 3.0.4 / 3.0.5 + libnss_wins ibex netswitch samba = firefox crash

2008-12-18 Thread bongey
Public bug reported:

Bug description : 
Using firefox with wins enabled in /etc/netswitch.conf 
# /etc/nsswitch.conf
.
hosts:  files  wins mdns4_minimal [NOTFOUND=return] dns mdns4
  
Causes firefox to crash over and over, on almost every site. 
I don't know if this incorrect to add the wins section to the netswitch or 
what? 
Removing the wins from the netswitch file and firefox works fine. 

Backtrace : 
#0  0x7f90f5f65fd5 in raise () from /lib/libc.so.6
#1  0x7f90f5f67b43 in abort () from /lib/libc.so.6
#2  0x7f90dfc63c51 in talloc_free () from /usr/lib/libtalloc.so.1
#3  0x7f90e0eb6f48 in ?? () from /lib/libnss_wins.so.2
#4  0x7f90dfc63c92 in talloc_free () from /usr/lib/libtalloc.so.1
#5  0x7f90e0eded02 in alloc_sub_basic () from /lib/libnss_wins.so.2
#6  0x7f90e0edf26d in talloc_sub_basic () from /lib/libnss_wins.so.2
#7  0x7f90e0e2ebe9 in ?? () from /lib/libnss_wins.so.2
#8  0x7f90e0e2fa93 in lp_lockdir () from /lib/libnss_wins.so.2
#9  0x7f90e0ed9972 in lock_path () from /lib/libnss_wins.so.2
#10 0x7f90e0e84321 in receive_unexpected () from /lib/libnss_wins.so.2
#11 0x7f90e0e86d2e in receive_nmb_packet () from /lib/libnss_wins.so.2
#12 0x7f90e0e89530 in name_query () from /lib/libnss_wins.so.2
#13 0x7f90e0e2c202 in _nss_wins_gethostbyname_r ()
   from /lib/libnss_wins.so.2
#14 0x7f90e0e2c484 in _nss_wins_gethostbyname2_r ()
   from /lib/libnss_wins.so.2
#15 0x7f90f6000f73 in ?? () from /lib/libc.so.6
#16 0x7f90f600296e in getaddrinfo () from /lib/libc.so.6
#17 0x7f90f565a828 in PR_GetAddrInfoByName () from /usr/lib/libnspr4.so.0d
#18 0x7f90f4764b82 in ?? () from /usr/lib/xulrunner-1.9.0.4/libxul.so
#19 0x7f90f5666dc3 in ?? () from /usr/lib/libnspr4.so.0d
#20 0x7f90f6c5a3ea in start_thread () from /lib/libpthread.so.0


Machine information 
Description:Ubuntu 8.10
Release:8.10
Linux xpslappy 2.6.27-10-generic #1 SMP Fri Nov 21 19:19:18 UTC 2008 x86_64 
GNU/Linux
Mozilla Firefox 3.0.5, Copyright (c) 1998 - 2008 mozilla.org

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

-- 
firefox 3.0.4 / 3.0.5 + libnss_wins ibex netswitch samba = firefox crash
https://bugs.launchpad.net/bugs/309539
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 282298] Re: [SRU] Intrepid: No Access to NAS (samba=2.2.x) shares any more

2008-12-18 Thread Kai Blin
I have to admit that the Nautilus error is all but helpful. Could you
try with smbclient as described by the initial reporter and check if
that works or give the error output from smbclient?

-- 
[SRU] Intrepid: No Access to NAS (samba=2.2.x) shares any more
https://bugs.launchpad.net/bugs/282298
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 306464] Re: bad path to configuration file

2008-12-18 Thread Pavel Mlčoch
*** This bug is a duplicate of bug 308903 ***
https://bugs.launchpad.net/bugs/308903

Sorry, but your change is for me illogical. My bug is reported
2008-12-09, and #308903 at 2008-12-17. So by my is yann's bug duplicate,
not my.

-- 
bad path to configuration file
https://bugs.launchpad.net/bugs/306464
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula 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