Bug#606262: marked as done (bacula-director-mysql lenny to squeeze database upgrade fail)
Your message dated Thu, 21 Apr 2011 08:55:49 +0200 with message-id <20110421065548.ga22...@co.mobile.jhr-online.de> and subject line Re: [pkg-bacula-devel] Bug#606262: Bug#606262: bacula-director-mysql lenny to squeeze database upgrade fail has caused the Debian Bug report #606262, regarding bacula-director-mysql lenny to squeeze database upgrade fail to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 606262: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=606262 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: bacula-director-mysql Version: 5.0.2-2, 5.0.2-1 The included script upgrades from database format version 11 to version 12. Unfortunately Debian lenny has bacula 2.4.4, which is version 10. We were able to get around this by downloading the source to bacula 3.0 and running the version 10 to 11 script manually ourselves. /usr/share/bacula-director/update_mysql_tables echo " " echo "This script will update a Bacula MySQL database from version 11 to 12" echo " which is needed to convert from Bacula Enterprise 2.6 to 4.0 or " echo " Standard version 3.0 to 5.0" echo " " What is needed is a script that upgrades 10 to 12. I'm including the one I wrote. The upgrade for the bacula-director-mysql should really call this script or something similar. #!/bin/sh # # Shell script to update MySQL tables from version 2.0 to 5.0 # echo " " echo "This script will update a Bacula MySQL database from version 10 to 12" echo " which is needed to convert from Bacula version 2.0.x to 5.0" echo " " bindir=@SQL_BINDIR@ db_name=@db_name@ if $bindir/mysql $* -f <--- End Message --- --- Begin Message --- On Wed, Apr 20, 2011 at 07:51:11PM -0300, Julien Savoie wrote: > All that said, it maybe better 'fall mode' behavior, or at least present > us with a better error message. Especially since dbc_dbadmin and > dbc_dbname were set properly. The upgrade runs as dbc_dbuser as I > understand though. It's an entirely moot point though, but in theory it > could have run the upgrade as dbc_dbadmin rather than dbc_dbuser. > Anyways, this is a separate issue and my bug that the upgrade script > doesn't work was in error. Thanks for your answer! Since I'm about to "rewrite" how config files are created and installed in bacula packages anyways, I guess (and hope) that such issues won't arise that easily anymore. Unfortunately, dbconfig-common is a PITA in some corner cases but serves for a great deal of cases. Let's see if we can improve the situation in later packages. Good to see the upgrade path is clear, though. Hauke -- .''`. Jan Hauke Rahmwww.jhr-online.de : :' : Debian Developer www.debian.org `. `'` Member of the Linux Foundationwww.linux.com `- Fellow of the Free Software Foundation Europe www.fsfe.org signature.asc Description: Digital signature --- End Message ---
Bug#623572: thttpd: Pass Cache-Control header to HTTP_CACHE_CONTROL CGI environment
Package: thttpd Version: 2.25b-11 Severity: wishlist Tags: patch It would be nice to pass the Cache-Control header to spawned CGI processes. Here is a minimal patch that does just this. -- System Information: Debian Release: 6.0.1 APT prefers stable APT policy: (500, 'stable') Architecture: kfreebsd-amd64 (x86_64) Kernel: kFreeBSD 8.1-1-amd64 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Shell: /bin/sh linked to /bin/dash Versions of packages thttpd depends on: ii libc0.1 2.11.2-10 Embedded GNU C Library: Shared lib Versions of packages thttpd recommends: ii logrotate 3.7.8-6Log rotation utility Versions of packages thttpd suggests: pn thttpd-util(no description available) -- no debconf information diff -u thttpd-2.25b.orig/libhttpd.c thttpd-2.25b/libhttpd.c --- thttpd-2.25b.orig/libhttpd.c 2011-04-21 12:03:04.0 +0200 +++ thttpd-2.25b/libhttpd.c 2011-04-21 12:03:10.0 +0200 @@ -1733,6 +1733,7 @@ hc->acceptl = ""; hc->cookie = ""; hc->contenttype = ""; +hc->cachecontrol = ""; hc->reqhost[0] = '\0'; hc->hdrhost = ""; hc->hostdir[0] = '\0'; @@ -2189,6 +2190,12 @@ cp += strspn( cp, " \t" ); hc->contenttype = cp; } + else if ( strncasecmp( buf, "Cache-Control:", 14 ) == 0 ) + { + cp = &buf[14]; + cp += strspn( cp, " \t" ); + hc->cachecontrol = cp; + } else if ( strncasecmp( buf, "Content-Length:", 15 ) == 0 ) { cp = &buf[15]; @@ -2211,7 +2218,6 @@ else if ( strncasecmp( buf, "Accept-Charset:", 15 ) == 0 || strncasecmp( buf, "Accept-Language:", 16 ) == 0 || strncasecmp( buf, "Agent:", 6 ) == 0 || - strncasecmp( buf, "Cache-Control:", 14 ) == 0 || strncasecmp( buf, "Cache-Info:", 11 ) == 0 || strncasecmp( buf, "Charge-To:", 10 ) == 0 || strncasecmp( buf, "Client-IP:", 10 ) == 0 || @@ -3063,6 +3069,8 @@ envp[envn++] = build_env( "HTTP_COOKIE=%s", hc->cookie ); if ( hc->contenttype[0] != '\0' ) envp[envn++] = build_env( "CONTENT_TYPE=%s", hc->contenttype ); +if ( hc->cachecontrol[0] != '\0' ) + envp[envn++] = build_env( "HTTP_CACHE_CONTROL=%s", hc->cachecontrol ); if ( hc->hdrhost[0] != '\0' ) envp[envn++] = build_env( "HTTP_HOST=%s", hc->hdrhost ); if ( hc->contentlength != -1 ) diff -u thttpd-2.25b.orig/libhttpd.h thttpd-2.25b/libhttpd.h --- thttpd-2.25b.orig/libhttpd.h 2011-04-21 12:03:04.0 +0200 +++ thttpd-2.25b/libhttpd.h 2011-04-21 12:03:10.0 +0200 @@ -114,6 +114,7 @@ char* acceptl; char* cookie; char* contenttype; +char* cachecontrol; char* reqhost; char* hdrhost; char* hostdir;
Bug#573178: marked as done (bacula wants to prune jobs older than 40 years)
Your message dated Thu, 21 Apr 2011 13:56:19 +0200 with message-id <20110421115619.ga7...@ca.home.jhr-online.de> and subject line Re: Bug#573178: bacula wants to prune jobs older than 40 years has caused the Debian Bug report #573178, regarding bacula wants to prune jobs older than 40 years to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 573178: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=573178 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: bacula-director-mysql Version: 5.0.0-5~bpo50+1 Severity: normal Hello, I crawled me through messages from bconsole today and repeatly found this: 09-Mar 16:39 backup-dir JobId 12212: Begin pruning Jobs older than 40 years 2 months 2 days 15 hours 39 mins 43 secs. I think bacula didn't exist 40 years ago :-) Without calculating it now, it looks like a wrongly called time() function, because 40 years 2 months 2 days 15 hours 39 mins 43 secs ago, it may be the time of time() == 0 Regards --- End Message --- --- Begin Message --- Version: 5.0.1-1 Hi, > I crawled me through messages from bconsole today and repeatly found this: > > 09-Mar 16:39 backup-dir JobId 12212: Begin pruning Jobs older than 40 > years 2 months 2 days 15 hours 39 mins 43 secs. > > I think bacula didn't exist 40 years ago :-) > Without calculating it now, it looks like a wrongly called time() > function, because 40 years 2 months 2 days 15 hours 39 mins 43 secs ago, > it may be the time of time() == 0 This was fixed upstream in version 5.0.1. If you disagree, please reopen the bug. Hauke http://bugs.bacula.org/view.php?id=1466 -- .''`. Jan Hauke Rahmwww.jhr-online.de : :' : Debian Developer www.debian.org `. `'` Member of the Linux Foundationwww.linux.com `- Fellow of the Free Software Foundation Europe www.fsfe.org signature.asc Description: Digital signature --- End Message ---
Processed: notfound 606262 in 5.0.2-1
Processing commands for cont...@bugs.debian.org: > notfound 606262 5.0.2-1 Bug #606262 {Done: Jan Hauke Rahm } [bacula-director-mysql] bacula-director-mysql lenny to squeeze database upgrade fail Bug No longer marked as found in versions bacula/5.0.2-1. > thanks Stopping processing here. Please contact me if you need assistance. -- 606262: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=606262 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.130338942131382.transcr...@bugs.debian.org
Bug#513380: marked as done (bacula-director-mysql: space at the and of file name removed)
Your message dated Thu, 21 Apr 2011 14:35:18 +0200 with message-id <20110421123517.ga22...@ca.home.jhr-online.de> and subject line Re: Bug#513380: Space at end of file name in Bacula 5.0.0 has caused the Debian Bug report #513380, regarding bacula-director-mysql: space at the and of file name removed to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 513380: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=513380 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: bacula-director-mysql Version: 2.4.4-1 Severity: normal This occur in file list of the "File" directive. Please, don't correct me and don't limit file naming more then operating system does. Take it "as is." -- System Information: Debian Release: 5.0 APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R) Shell: /bin/sh linked to /bin/bash Versions of packages bacula-director-mysql depends on: ii bacula-director-common 2.4.4-1 network backup, recovery and verif ii dbconfig-common1.8.40common framework for packaging dat ii debconf [debconf-2.0] 1.5.24Debian configuration management sy ii libc6 2.7-18GNU C Library: Shared libraries ii libgcc11:4.3.3-1 GCC support library ii libmysqlclient15off5.0.75-1 MySQL database client library ii libstdc++6 4.3.3-1 The GNU Standard C++ Library v3 ii libwrap0 7.6.q-16 Wietse Venema's TCP wrappers libra ii mysql-client 5.0.75-1 MySQL database client (metapackage ii mysql-client-5.0 [mysq 5.0.75-1 MySQL database client binaries ii python2.5 2.5.2-15 An interactive high-level object-o ii zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime Versions of packages bacula-director-mysql recommends: ii mysql-server 5.0.75-1 MySQL database server (metapackage ii mysql-server-5.0 [mysql-serve 5.0.75-1 MySQL database server binaries bacula-director-mysql suggests no packages. -- debconf information: bacula-director-mysql/mysql/admin-pass: (password omitted) * bacula-director-mysql/db_password: (password omitted) bacula-director-mysql/app-password-confirm: (password omitted) bacula-director-mysql/password-confirm: (password omitted) bacula-director-mysql/mysql_root_password: (password omitted) bacula-director-mysql/mysql/app-pass: (password omitted) bacula-director-mysql/mysql/admin-user: root bacula-director-mysql/purge: false bacula-director-mysql/remove-error: abort bacula-director-mysql/import-oldsettings: * bacula-director-mysql/remove_catalog_on_purge: false bacula-director-mysql/internal/skip-preseed: true * bacula-director-mysql/dbconfig-install: false bacula-director-mysql/db/app-user: bacula bacula-director-mysql/upgrade-backup: true bacula-director-mysql/install-error: abort bacula-director-mysql/db/dbname: bacula bacula-director-mysql/remote/host: bacula-director-mysql/upgrade-error: abort bacula-director-mysql/remote/port: bacula-director-mysql/passwords-do-not-match: * bacula-director-mysql/db_host: localhost bacula-director-mysql/dbconfig-upgrade: true bacula-director-mysql/missing-db-package-error: abort bacula-director-mysql/remote/newhost: bacula-director-mysql/performing_upgrade: true bacula-director-mysql/database-type: mysql * bacula-director-mysql/create_tables: true bacula-director-mysql/mysql/method: unix socket bacula-director-mysql/internal/reconfiguring: false * bacula-director-mysql/mysql_root_username: root bacula-director-mysql/dbconfig-reinstall: false bacula-director-mysql/dbconfig-remove: true * bacula-director-mysql/db_user: bacula --- End Message --- --- Begin Message --- Version: 5.0.0-1 I believe this is fixed in version 5 of bacula. At least there is a proper routine to parse quoted strings which doesn't eliminate white space at the end of strings in src/lib/parse_conf.c. Hauke -- .''`. Jan Hauke Rahmwww.jhr-online.de : :' : Debian Developer www.debian.org `. `'` Member of the Linux Foundationwww.linux.com `- Fellow of the Free Software Foundation Europe www.fsfe.org signature.asc Description: Digital signature --- End Message ---
Processed (with 1 errors): limit source to bacula, tagging 615570, tagging 612296, tagging 622003, tagging 592622 ...
Processing commands for cont...@bugs.debian.org: > #bacula (5.0.3-1) unstable; urgency=low > # > # * [27362ff7] Adopted by bacula packaging group (Closes: #612296) > # * [14bbb35e] New upstream version (Closes: #592622) > #+ Fixes OpenSSL 1.0.0 issue (Closes: #622003) > #+ Doesn't install any Product column (Closes: #615570) > # * [7562cd38] Install alternative binary name for tray-monitor (Closes: > 461943) > # > limit source bacula Limiting to bugs with field 'source' containing at least one of 'bacula' Limit currently set to 'source':'bacula' > tags 615570 + pending Bug #615570 [bacula-director-sqlite3] Fatal error: Query failed: SELECT VersionId FROM Version: ERR=database schema has changed Added tag(s) pending. > tags 612296 + pending source: ""' does not match at least one of "bacula" Failed to alter tags of Bug 612296: limit failed for bugs: 612296. > tags 622003 + pending Bug #622003 [src:bacula] bacula: FTBFS: ld: cannot find -lbaccfg Added tag(s) pending. > tags 592622 + pending Bug #592622 [bacula] bacula: 5.0.3 is upstream available Added tag(s) pending. > tags 461943 + pending Bug #461943 [bacula-traymonitor] please install an alternative name "bacula-traymonitor" Added tag(s) pending. > thanks Stopping processing here. Please contact me if you need assistance. -- 461943: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461943 612296: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=612296 615570: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615570 622003: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622003 592622: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592622 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.130339317811321.transcr...@bugs.debian.org
Bug#461943: marked as done (please install an alternative name "bacula-traymonitor")
Your message dated Thu, 21 Apr 2011 15:47:40 + with message-id and subject line Bug#461943: fixed in bacula 5.0.3-1 has caused the Debian Bug report #461943, regarding please install an alternative name "bacula-traymonitor" to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 461943: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461943 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: bacula-traymonitor Version: 2.2.6-0.1 Severity: minor The package name is "bacula-traymonitor". However the installed binary is "bacula-tray-monitor". This is fairly confusing. Would it be possible to either rename the binary to match the package name (and provide a symlink for backwards compatibility) or install a symlink for the package name to the binary name? -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.23-1-686 (SMP w/2 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages bacula-traymonitor depends on: ii bacula-common 2.2.6-0.1Network backup, recovery and verif ii libatk1.0-0 1.20.0-1 The ATK accessibility toolkit ii libc6 2.7-5GNU C Library: Shared libraries ii libcairo2 1.4.12-2 The Cairo 2D vector graphics libra ii libgcc1 1:4.3-20080104-1 GCC support library ii libglib2.0-02.14.4-2 The GLib library of C routines ii libgtk2.0-0 2.12.3-2 The GTK+ graphical user interface ii libpango1.0-0 1.18.3-1 Layout and rendering of internatio ii libstdc++6 4.3-20080104-1 The GNU Standard C++ Library v3 ii libx11-62:1.0.3-7X11 client-side library Versions of packages bacula-traymonitor recommends: pn kde | desktop-environment (no description available) -- no debconf information --- End Message --- --- Begin Message --- Source: bacula Source-Version: 5.0.3-1 We believe that the bug you reported is fixed in the latest version of bacula, which is due to be installed in the Debian FTP archive: bacula-client_5.0.3-1_all.deb to main/b/bacula/bacula-client_5.0.3-1_all.deb bacula-common-mysql_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-mysql_5.0.3-1_amd64.deb bacula-common-pgsql_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-pgsql_5.0.3-1_amd64.deb bacula-common-sqlite3_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-sqlite3_5.0.3-1_amd64.deb bacula-common_5.0.3-1_amd64.deb to main/b/bacula/bacula-common_5.0.3-1_amd64.deb bacula-console-qt_5.0.3-1_amd64.deb to main/b/bacula/bacula-console-qt_5.0.3-1_amd64.deb bacula-console_5.0.3-1_amd64.deb to main/b/bacula/bacula-console_5.0.3-1_amd64.deb bacula-director-common_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-common_5.0.3-1_amd64.deb bacula-director-mysql_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-mysql_5.0.3-1_amd64.deb bacula-director-pgsql_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-pgsql_5.0.3-1_amd64.deb bacula-director-sqlite3_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-sqlite3_5.0.3-1_amd64.deb bacula-director-sqlite_5.0.3-1_all.deb to main/b/bacula/bacula-director-sqlite_5.0.3-1_all.deb bacula-fd_5.0.3-1_amd64.deb to main/b/bacula/bacula-fd_5.0.3-1_amd64.deb bacula-sd-mysql_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd-mysql_5.0.3-1_amd64.deb bacula-sd-pgsql_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd-pgsql_5.0.3-1_amd64.deb bacula-sd-sqlite3_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd-sqlite3_5.0.3-1_amd64.deb bacula-sd-sqlite_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd-sqlite_5.0.3-1_amd64.deb bacula-sd_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd_5.0.3-1_amd64.deb bacula-server_5.0.3-1_all.deb to main/b/bacula/bacula-server_5.0.3-1_all.deb bacula-traymonitor_5.0.3-1_amd64.deb to main/b/bacula/bacula-traymonitor_5.0.3-1_amd64.deb bacula_5.0.3-1.diff.gz to main/b/bacula/bacula_5.0.3-1.diff.gz bacula_5.0.3-1.dsc to main/b/bacula/bacula_5.0.3-1.dsc bacula_5.0.3-1_all.deb to main/b/bacula/bacula_5.0.3-1_all.deb bacula_5.0.3.orig.tar.gz to main/b/bacula/bacula_5.0.3.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 461...@bugs.debian.org, and the maintainer will reopen the bug report if a
Bug#592622: marked as done (bacula: 5.0.3 is upstream available)
Your message dated Thu, 21 Apr 2011 15:47:40 + with message-id and subject line Bug#592622: fixed in bacula 5.0.3-1 has caused the Debian Bug report #592622, regarding bacula: 5.0.3 is upstream available to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 592622: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592622 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: bacula Severity: wishlist 5.0.3 is upstream available containing fixes for some 5.0.x bugs that we hit. 0001599: Started using TLS and Accurate backups, the Director started crashing at random times 0001568: SD sig11 crash when OpenSSL recieved a timeout signal (well, they stat in the bug records that it is not fixed, but it is according the 5.0.3 changelog). -- System Information: Debian Release: squeeze/sid APT prefers stable APT policy: (990, 'stable'), (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/3 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash --- End Message --- --- Begin Message --- Source: bacula Source-Version: 5.0.3-1 We believe that the bug you reported is fixed in the latest version of bacula, which is due to be installed in the Debian FTP archive: bacula-client_5.0.3-1_all.deb to main/b/bacula/bacula-client_5.0.3-1_all.deb bacula-common-mysql_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-mysql_5.0.3-1_amd64.deb bacula-common-pgsql_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-pgsql_5.0.3-1_amd64.deb bacula-common-sqlite3_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-sqlite3_5.0.3-1_amd64.deb bacula-common_5.0.3-1_amd64.deb to main/b/bacula/bacula-common_5.0.3-1_amd64.deb bacula-console-qt_5.0.3-1_amd64.deb to main/b/bacula/bacula-console-qt_5.0.3-1_amd64.deb bacula-console_5.0.3-1_amd64.deb to main/b/bacula/bacula-console_5.0.3-1_amd64.deb bacula-director-common_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-common_5.0.3-1_amd64.deb bacula-director-mysql_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-mysql_5.0.3-1_amd64.deb bacula-director-pgsql_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-pgsql_5.0.3-1_amd64.deb bacula-director-sqlite3_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-sqlite3_5.0.3-1_amd64.deb bacula-director-sqlite_5.0.3-1_all.deb to main/b/bacula/bacula-director-sqlite_5.0.3-1_all.deb bacula-fd_5.0.3-1_amd64.deb to main/b/bacula/bacula-fd_5.0.3-1_amd64.deb bacula-sd-mysql_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd-mysql_5.0.3-1_amd64.deb bacula-sd-pgsql_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd-pgsql_5.0.3-1_amd64.deb bacula-sd-sqlite3_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd-sqlite3_5.0.3-1_amd64.deb bacula-sd-sqlite_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd-sqlite_5.0.3-1_amd64.deb bacula-sd_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd_5.0.3-1_amd64.deb bacula-server_5.0.3-1_all.deb to main/b/bacula/bacula-server_5.0.3-1_all.deb bacula-traymonitor_5.0.3-1_amd64.deb to main/b/bacula/bacula-traymonitor_5.0.3-1_amd64.deb bacula_5.0.3-1.diff.gz to main/b/bacula/bacula_5.0.3-1.diff.gz bacula_5.0.3-1.dsc to main/b/bacula/bacula_5.0.3-1.dsc bacula_5.0.3-1_all.deb to main/b/bacula/bacula_5.0.3-1_all.deb bacula_5.0.3.orig.tar.gz to main/b/bacula/bacula_5.0.3.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 592...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Jan Hauke Rahm (supplier of updated bacula package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Thu, 21 Apr 2011 15:16:55 +0200 Source: bacula Binary: bacula bacula-common bacula-common-sqlite3 bacula-common-pgsql bacula-common-mysql bacula-director-common bacula-director-sqlite bacula-director-sqlite3 bacula-director-mysql bacula-director-pgsql bacula-client bacula-fd bacula-server bacula-sd bacula-sd-sqlite3 bacula-sd-sqlite bacula-sd-mysql bacula-sd-pgsql bacula-console bacula-console-qt bacula-traymonitor Architecture: source all amd64 Version: 5.0.3-1 Distribution: unstable Urgency: low Maintainer: Debian Bacula packaging Group Changed-By: Jan Hauke Rahm Description: bacula - network
Bug#615570: marked as done (Fatal error: Query failed: SELECT VersionId FROM Version: ERR=database schema has changed)
Your message dated Thu, 21 Apr 2011 15:47:40 + with message-id and subject line Bug#615570: fixed in bacula 5.0.3-1 has caused the Debian Bug report #615570, regarding Fatal error: Query failed: SELECT VersionId FROM Version: ERR=database schema has changed to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 615570: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615570 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Package: bacula-director-sqlite3 Version: 5.0.2-3 Severity: normal I am not sure how high the severity is as the bug happens not often. Normally everything work well. However, the error in the subject is send sometimes. Now I went through the code and find the problem. There is a debian patch that is introducing the »Product« column in the Version table. Unfortunately it seems to be forgotten that the sqlite3 table has to be changed accordingly; there is no »Product« column in the table. I am not sure about this patch either. What is the sense to have a new column which has always the content »bacula«? - -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (800, 'unstable'), (700, 'stable'), (60, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.37 (SMP w/8 CPU cores) Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1) (ignored: LC_ALL set to de_DE) Shell: /bin/sh linked to /bin/dash Versions of packages bacula-director-sqlite3 depends on: ii bacula-common 5.0.2-3network backup, recovery and verif ii bacula-common-sqlite3 5.0.2-3network backup, recovery and verif ii bacula-director-common5.0.2-3network backup, recovery and verif ii dbconfig-common 1.8.47 common framework for packaging dat ii debconf [debconf-2.0] 1.5.38 Debian configuration management sy ii file 5.04-5 Determines file type using "magic" ii libc6 2.11.2-11 Embedded GNU C Library: Shared lib ii libgcc1 1:4.4.5-12 GCC support library ii libpython2.6 2.6.6-8+b1 Shared Python runtime library (ver ii libsqlite3-0 3.7.5-1SQLite 3 shared library ii libssl0.9.8 0.9.8o-5 SSL shared libraries ii libstdc++64.4.5-12 The GNU Standard C++ Library v3 ii libwrap0 7.6.q-19 Wietse Venema's TCP wrappers libra ii sqlite2.8.17-6 command line interface for SQLite ii sqlite3 3.7.5-1A command line interface for SQLit bacula-director-sqlite3 recommends no packages. bacula-director-sqlite3 suggests no packages. - -- Klaus Ethgenhttp://www.ethgen.ch/ pub 2048R/D1A4EDE5 2000-02-26 Klaus Ethgen Fingerprint: D7 67 71 C4 99 A6 D4 FE EA 40 30 57 3C 88 26 2B -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) iQEVAwUBTWpQmp+OKpjRpO3lAQorHQf/VoVN+2uudmNAlfBB0rQJHIKjF38zPEJF 9VIqyxR1u5Vn/M+MgWmpJui+Rvdp6ZnyKd0sIioA9+oaRX5C4uf5mVEha9IFytXy onpiaFOK6Wm4o5B46igdJh2HXmI4NcNFSYfwisGoAgUg1DiV7m8ddGAiUvcNHlCa dn0qhBrnt+HyiDXP9zqhbVdEB/urY05NTPbOkiapcYKRSW0SdFCIzcQ8ySqiduvj Nu/r/lgqqzvFKdInxx1DetSz7ZIxtOIASDMXASigZx2hPz5HrXucLBS25YrIpXtO vz39UwZdhELKGaP27MAoV53h888HxahjW2n0yIaFwXq+mLyu28810g== =mbW2 -END PGP SIGNATURE- --- End Message --- --- Begin Message --- Source: bacula Source-Version: 5.0.3-1 We believe that the bug you reported is fixed in the latest version of bacula, which is due to be installed in the Debian FTP archive: bacula-client_5.0.3-1_all.deb to main/b/bacula/bacula-client_5.0.3-1_all.deb bacula-common-mysql_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-mysql_5.0.3-1_amd64.deb bacula-common-pgsql_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-pgsql_5.0.3-1_amd64.deb bacula-common-sqlite3_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-sqlite3_5.0.3-1_amd64.deb bacula-common_5.0.3-1_amd64.deb to main/b/bacula/bacula-common_5.0.3-1_amd64.deb bacula-console-qt_5.0.3-1_amd64.deb to main/b/bacula/bacula-console-qt_5.0.3-1_amd64.deb bacula-console_5.0.3-1_amd64.deb to main/b/bacula/bacula-console_5.0.3-1_amd64.deb bacula-director-common_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-common_5.0.3-1_amd64.deb bacula-director-mysql_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-mysql_5.0.3-1_amd64.deb bacula-director-pgsql_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-pgsql_5.0.3-1_amd64.deb bacula-director-sqlite3_5.0.
Bug#622003: marked as done (bacula: FTBFS: ld: cannot find -lbaccfg)
Your message dated Thu, 21 Apr 2011 15:47:40 + with message-id and subject line Bug#622003: fixed in bacula 5.0.3-1 has caused the Debian Bug report #622003, regarding bacula: FTBFS: ld: cannot find -lbaccfg to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 622003: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622003 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Source: bacula Version: 5.0.2-3 Severity: serious Tags: wheezy sid User: debian...@lists.debian.org Usertags: qa-ftbfs-20110408 qa-ftbfs Justification: FTBFS on amd64 Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part: > g++ -c -pipe -g -D_REENTRANT -Wall -W -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED > -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore > -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I.. -I. -Iconsole -Irestore > -Iselect -Imoc -Iui -o obj/qrc_main.o qrc_main.cpp > /build/user-bacula_5.0.2-3-amd64-MhI0mJ/bacula-5.0.2/debian/tmp-build-sqlite3/libtool > --silent --tag=CXX --mode=link g++ -o bat obj/main.o obj/bat_conf.o > obj/mainwin.o obj/qstd.o obj/pages.o obj/dircomm.o obj/dircomm_auth.o > obj/console.o obj/prerestore.o obj/restore.o obj/brestore.o obj/label.o > obj/relabel.o obj/mount.o obj/run.o obj/runcmd.o obj/estimate.o obj/prune.o > obj/select.o obj/textinput.o obj/medialist.o obj/mediaview.o obj/mediaedit.o > obj/joblist.o obj/clients.o obj/storage.o obj/content.o obj/fileset.o > obj/joblog.o obj/job.o obj/jobs.o obj/restoretree.o obj/help.o > obj/mediainfo.o obj/dirstat.o obj/clientstat.o obj/storstat.o > obj/fmtwidgetitem.o obj/comboutil.o obj/moc_mainwin.o obj/moc_dircomm.o > obj/moc_console.o obj/moc_restore.o obj/moc_label.o obj/moc_relabel.o > obj/moc_mount.o obj/moc_run.o obj/moc_select.o obj/moc_textinput.o > obj/moc_medialist.o obj/moc_mediaview.o obj/moc_mediaedit.o obj/moc_joblist.o > obj/moc_clients.o obj/moc_storage.o obj/moc_content.o obj/moc_fileset.o > obj/moc_joblog.o obj/moc_job.o obj/moc_jobs.o obj/moc_restoretree.o > obj/moc_help.o obj/moc_mediainfo.o obj/moc_dirstat.o obj/moc_clientstat.o > obj/moc_storstat.o obj/qrc_main.o-L/usr/lib -L../lib -lbaccfg -lbac -lssl > -lcrypto -lQtGui -lQtCore -lpthread > /usr/bin/ld: cannot find -lbaccfg > /usr/bin/ld: cannot find -lbac > collect2: ld returned 1 exit status The full build log is available from: http://people.debian.org/~lucas/logs/2011/04/08/bacula_5.0.2-3_lsid64.buildlog A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! About the archive rebuild: The rebuild was done on about 50 AMD64 nodes of the Grid'5000 platform, using a clean chroot. Internet was not accessible from the build systems. -- | Lucas Nussbaum | lu...@lucas-nussbaum.net http://www.lucas-nussbaum.net/ | | jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F | --- End Message --- --- Begin Message --- Source: bacula Source-Version: 5.0.3-1 We believe that the bug you reported is fixed in the latest version of bacula, which is due to be installed in the Debian FTP archive: bacula-client_5.0.3-1_all.deb to main/b/bacula/bacula-client_5.0.3-1_all.deb bacula-common-mysql_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-mysql_5.0.3-1_amd64.deb bacula-common-pgsql_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-pgsql_5.0.3-1_amd64.deb bacula-common-sqlite3_5.0.3-1_amd64.deb to main/b/bacula/bacula-common-sqlite3_5.0.3-1_amd64.deb bacula-common_5.0.3-1_amd64.deb to main/b/bacula/bacula-common_5.0.3-1_amd64.deb bacula-console-qt_5.0.3-1_amd64.deb to main/b/bacula/bacula-console-qt_5.0.3-1_amd64.deb bacula-console_5.0.3-1_amd64.deb to main/b/bacula/bacula-console_5.0.3-1_amd64.deb bacula-director-common_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-common_5.0.3-1_amd64.deb bacula-director-mysql_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-mysql_5.0.3-1_amd64.deb bacula-director-pgsql_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-pgsql_5.0.3-1_amd64.deb bacula-director-sqlite3_5.0.3-1_amd64.deb to main/b/bacula/bacula-director-sqlite3_5.0.3-1_amd64.deb bacula-director-sqlite_5.0.3-1_all.deb to main/b/bacula/bacula-director-sqlite_5.0.3-1_all.deb bacula-fd_5.0.3-1_amd64.deb to main/b/bacula/bacula-fd_5.0.3-1_amd64.deb bacula-sd-mysql_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd-mysql_5.0.3-1_amd64.deb bacula-sd-pgsql_5.0.3-1_amd64.deb to main/b/bacula/bacula-sd-pgsql_5.0.3-1_amd64.deb bacula-sd-sqlite3_5.0.3-1_amd64.deb to m
Bug#599741: marked as done (firmware-b43legacy-installer: fails when there are multiple devices with similar PCI id)
Your message dated Thu, 21 Apr 2011 17:32:23 + with message-id and subject line Bug#599741: fixed in b43-fwcutter 1:014-1 has caused the Debian Bug report #599741, regarding firmware-b43legacy-installer: fails when there are multiple devices with similar PCI id to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 599741: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=599741 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: firmware-b43legacy-installer Version: 4.178.10.4-4 Severity: normal The postinst script (firmware-b43legacy-installer.postinst) fails when multiple PCI devices are found with PCI ids starting with 14e4. In my case I have one card which uses b43legacy (14e4:4320) and a Broadcomm ethernet adapter (14e4:4401). The variable "pci" (line 4 of the script mentioned above) will have the following value: 14e4:4401 14e4:4320 This will cause the tests in the nested "if" (lines 6-8) to always be true and the "Not supported card here" error to be always given. From looking at the other install script (for b43) it seems to me that it suffers from the same bug. To get around it I just ran b43-fwcutter manually. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages firmware-b43legacy-installer depends on: ii b43-fwcutter 1:013-2Utility for extracting Broadcom 43 ii wget 1.12-2.1 retrieves files from the web Versions of packages firmware-b43legacy-installer recommends: ii linux-image-2.6.32-5-686 [lin 2.6.32-23 Linux 2.6.32 for modern PCs firmware-b43legacy-installer suggests no packages. --- End Message --- --- Begin Message --- Source: b43-fwcutter Source-Version: 1:014-1 We believe that the bug you reported is fixed in the latest version of b43-fwcutter, which is due to be installed in the Debian FTP archive: b43-fwcutter_014-1.debian.tar.gz to contrib/b/b43-fwcutter/b43-fwcutter_014-1.debian.tar.gz b43-fwcutter_014-1.dsc to contrib/b/b43-fwcutter/b43-fwcutter_014-1.dsc b43-fwcutter_014-1_amd64.deb to contrib/b/b43-fwcutter/b43-fwcutter_014-1_amd64.deb b43-fwcutter_014.orig.tar.bz2 to contrib/b/b43-fwcutter/b43-fwcutter_014.orig.tar.bz2 firmware-b43-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43-installer_014-1_all.deb firmware-b43-lpphy-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43-lpphy-installer_014-1_all.deb firmware-b43legacy-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43legacy-installer_014-1_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 599...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Daniel Echeverry (supplier of updated b43-fwcutter package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 19 Apr 2011 20:26:59 -0500 Source: b43-fwcutter Binary: b43-fwcutter firmware-b43-installer firmware-b43-lpphy-installer firmware-b43legacy-installer Architecture: source all amd64 Version: 1:014-1 Distribution: unstable Urgency: low Maintainer: Fabrizio Regalli Changed-By: Daniel Echeverry Description: b43-fwcutter - Utility for extracting Broadcom 43xx firmware firmware-b43-installer - Installer package for firmware for the b43 driver firmware-b43-lpphy-installer - Installer package for firmware for the b43 driver (LP-PHY version firmware-b43legacy-installer - Installer package for firmware for the b43legacy driver Closes: 581798 599741 617394 617688 622962 Changes: b43-fwcutter (1:014-1) unstable; urgency=low . [ Fabrizio Regalli ] * New maintainers. Closes: #581798 * Added new firmware 478.104 to some non-lpphy cards. Closes: #622962 * Added Vcs-* repository. * Removed duplicate 'Homepage' fields to make lintian happy. * Moved to BinNMU. . [Daniel Echeverry ] * New upstream release. * Update copyright file to DEP5. Closes: #617688 * Fixed multiple PCI devices with PCI IDS. Closes: #599741 Thanks to Geoff Simmons for the
Bug#599742: marked as done (firmware-b43legacy-installer: fails when there are multiple devices with similar PCI id)
Your message dated Thu, 21 Apr 2011 17:32:23 + with message-id and subject line Bug#599741: fixed in b43-fwcutter 1:014-1 has caused the Debian Bug report #599741, regarding firmware-b43legacy-installer: fails when there are multiple devices with similar PCI id to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 599741: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=599741 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: firmware-b43legacy-installer Version: 4.178.10.4-4 Severity: normal The postinst script (firmware-b43legacy-installer.postinst) fails when multiple PCI devices are found with PCI ids starting with 14e4. In my case I have one card which uses b43legacy (14e4:4320) and a Broadcomm ethernet adapter (14e4:4401). The variable "pci" (line 4 of the script mentioned above) will have the following value: 14e4:4401 14e4:4320 This will cause the tests in the nested "if" (lines 6-8) to always be true and the "Not supported card here" error to be always given. From looking at the other install script (for b43) it seems to me that it suffers from the same bug. To get around it I just ran b43-fwcutter manually. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages firmware-b43legacy-installer depends on: ii b43-fwcutter 1:013-2Utility for extracting Broadcom 43 ii wget 1.12-2.1 retrieves files from the web Versions of packages firmware-b43legacy-installer recommends: ii linux-image-2.6.32-5-686 [lin 2.6.32-23 Linux 2.6.32 for modern PCs firmware-b43legacy-installer suggests no packages. --- End Message --- --- Begin Message --- Source: b43-fwcutter Source-Version: 1:014-1 We believe that the bug you reported is fixed in the latest version of b43-fwcutter, which is due to be installed in the Debian FTP archive: b43-fwcutter_014-1.debian.tar.gz to contrib/b/b43-fwcutter/b43-fwcutter_014-1.debian.tar.gz b43-fwcutter_014-1.dsc to contrib/b/b43-fwcutter/b43-fwcutter_014-1.dsc b43-fwcutter_014-1_amd64.deb to contrib/b/b43-fwcutter/b43-fwcutter_014-1_amd64.deb b43-fwcutter_014.orig.tar.bz2 to contrib/b/b43-fwcutter/b43-fwcutter_014.orig.tar.bz2 firmware-b43-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43-installer_014-1_all.deb firmware-b43-lpphy-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43-lpphy-installer_014-1_all.deb firmware-b43legacy-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43legacy-installer_014-1_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 599...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Daniel Echeverry (supplier of updated b43-fwcutter package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 19 Apr 2011 20:26:59 -0500 Source: b43-fwcutter Binary: b43-fwcutter firmware-b43-installer firmware-b43-lpphy-installer firmware-b43legacy-installer Architecture: source all amd64 Version: 1:014-1 Distribution: unstable Urgency: low Maintainer: Fabrizio Regalli Changed-By: Daniel Echeverry Description: b43-fwcutter - Utility for extracting Broadcom 43xx firmware firmware-b43-installer - Installer package for firmware for the b43 driver firmware-b43-lpphy-installer - Installer package for firmware for the b43 driver (LP-PHY version firmware-b43legacy-installer - Installer package for firmware for the b43legacy driver Closes: 581798 599741 617394 617688 622962 Changes: b43-fwcutter (1:014-1) unstable; urgency=low . [ Fabrizio Regalli ] * New maintainers. Closes: #581798 * Added new firmware 478.104 to some non-lpphy cards. Closes: #622962 * Added Vcs-* repository. * Removed duplicate 'Homepage' fields to make lintian happy. * Moved to BinNMU. . [Daniel Echeverry ] * New upstream release. * Update copyright file to DEP5. Closes: #617688 * Fixed multiple PCI devices with PCI IDS. Closes: #599741 Thanks to Geoff Simmons for the
Bug#617394: marked as done (firmware-b43-installer: Remove BCM4312 from long description)
Your message dated Thu, 21 Apr 2011 17:32:23 + with message-id and subject line Bug#617394: fixed in b43-fwcutter 1:014-1 has caused the Debian Bug report #617394, regarding firmware-b43-installer: Remove BCM4312 from long description to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 617394: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=617394 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: firmware-b43-installer Version: 4.150.10.5-5 Severity: minor Tags: patch Hi, Please remove BCM4312 as a supported chipset in the long description of the firmware-b43-installer package. PCI ID 14e4:4312 was an incorrectly listed BCM4311 chipset, now amended in the PCI ID repository [1] and Linux Wireless b43 driver page [2] as of revision 216. The BCM4312 (PCI ID 14e4:4315) is correctly listed as a supported chipset in firmware-b43-lpphy-installer's long description. Geoff [1] http://pci-ids.ucw.cz/read/PC/14e4/4312 [2] http://wireless.kernel.org/en/users/Drivers/b43 -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.37-2-686 (SMP w/1 CPU core) Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages firmware-b43-installer depends on: ii b43-fwcutter 1:013-3Utility for extracting Broadcom 43 ii bzip2 1.0.5-6high-quality block-sorting file co ii wget 1.12-2.1 retrieves files from the web Versions of packages firmware-b43-installer recommends: ii linux-image-2.6.37-2-686 [lin 2.6.37-2 Linux 2.6.37 for modern PCs firmware-b43-installer suggests no packages. -- no debconf information diff -Nru b43-fwcutter-013/debian/control b43-fwcutter-013/debian/control --- b43-fwcutter-013/debian/control 2010-04-26 08:03:47.0 +1000 +++ b43-fwcutter-013/debian/control 2011-03-09 02:04:46.0 +1100 @@ -26,7 +26,6 @@ Supported chipsets: - BCM4306/3 - BCM4311 - - BCM4312 - BCM4318 Package: firmware-b43-lpphy-installer --- End Message --- --- Begin Message --- Source: b43-fwcutter Source-Version: 1:014-1 We believe that the bug you reported is fixed in the latest version of b43-fwcutter, which is due to be installed in the Debian FTP archive: b43-fwcutter_014-1.debian.tar.gz to contrib/b/b43-fwcutter/b43-fwcutter_014-1.debian.tar.gz b43-fwcutter_014-1.dsc to contrib/b/b43-fwcutter/b43-fwcutter_014-1.dsc b43-fwcutter_014-1_amd64.deb to contrib/b/b43-fwcutter/b43-fwcutter_014-1_amd64.deb b43-fwcutter_014.orig.tar.bz2 to contrib/b/b43-fwcutter/b43-fwcutter_014.orig.tar.bz2 firmware-b43-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43-installer_014-1_all.deb firmware-b43-lpphy-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43-lpphy-installer_014-1_all.deb firmware-b43legacy-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43legacy-installer_014-1_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 617...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Daniel Echeverry (supplier of updated b43-fwcutter package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 19 Apr 2011 20:26:59 -0500 Source: b43-fwcutter Binary: b43-fwcutter firmware-b43-installer firmware-b43-lpphy-installer firmware-b43legacy-installer Architecture: source all amd64 Version: 1:014-1 Distribution: unstable Urgency: low Maintainer: Fabrizio Regalli Changed-By: Daniel Echeverry Description: b43-fwcutter - Utility for extracting Broadcom 43xx firmware firmware-b43-installer - Installer package for firmware for the b43 driver firmware-b43-lpphy-installer - Installer package for firmware for the b43 driver (LP-PHY version firmware-b43legacy-installer - Installer package for firmware for the b43legacy driver Closes: 581798 599741 617394 617688 622962 Changes: b43-fwcutter (1:014-1) unstable; urgency=low . [ Fabrizio Regalli ] * New maintainers. Closes: #581798 * Added new firmware 478.104 to some non-lpphy cards. Closes: #622962 * Added Vcs-*
Bug#617688: marked as done (b43-fwcutter: debian/copyright lists incorrect license, missing copyright holders)
Your message dated Thu, 21 Apr 2011 17:32:23 + with message-id and subject line Bug#617688: fixed in b43-fwcutter 1:014-1 has caused the Debian Bug report #617688, regarding b43-fwcutter: debian/copyright lists incorrect license, missing copyright holders to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 617688: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=617688 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Source: b43-fwcutter Version: 1:013-3 Severity: serious Justification: Policy 12.5 debian/copyright states that this package is GPL, however, it appears to have a 2 clause BSD license, and some code in the public domain. The BSD license requires that copyright holders be listed, and they are not all listed in debian/copyright. thanks, stew -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/8 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash --- End Message --- --- Begin Message --- Source: b43-fwcutter Source-Version: 1:014-1 We believe that the bug you reported is fixed in the latest version of b43-fwcutter, which is due to be installed in the Debian FTP archive: b43-fwcutter_014-1.debian.tar.gz to contrib/b/b43-fwcutter/b43-fwcutter_014-1.debian.tar.gz b43-fwcutter_014-1.dsc to contrib/b/b43-fwcutter/b43-fwcutter_014-1.dsc b43-fwcutter_014-1_amd64.deb to contrib/b/b43-fwcutter/b43-fwcutter_014-1_amd64.deb b43-fwcutter_014.orig.tar.bz2 to contrib/b/b43-fwcutter/b43-fwcutter_014.orig.tar.bz2 firmware-b43-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43-installer_014-1_all.deb firmware-b43-lpphy-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43-lpphy-installer_014-1_all.deb firmware-b43legacy-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43legacy-installer_014-1_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 617...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Daniel Echeverry (supplier of updated b43-fwcutter package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 19 Apr 2011 20:26:59 -0500 Source: b43-fwcutter Binary: b43-fwcutter firmware-b43-installer firmware-b43-lpphy-installer firmware-b43legacy-installer Architecture: source all amd64 Version: 1:014-1 Distribution: unstable Urgency: low Maintainer: Fabrizio Regalli Changed-By: Daniel Echeverry Description: b43-fwcutter - Utility for extracting Broadcom 43xx firmware firmware-b43-installer - Installer package for firmware for the b43 driver firmware-b43-lpphy-installer - Installer package for firmware for the b43 driver (LP-PHY version firmware-b43legacy-installer - Installer package for firmware for the b43legacy driver Closes: 581798 599741 617394 617688 622962 Changes: b43-fwcutter (1:014-1) unstable; urgency=low . [ Fabrizio Regalli ] * New maintainers. Closes: #581798 * Added new firmware 478.104 to some non-lpphy cards. Closes: #622962 * Added Vcs-* repository. * Removed duplicate 'Homepage' fields to make lintian happy. * Moved to BinNMU. . [Daniel Echeverry ] * New upstream release. * Update copyright file to DEP5. Closes: #617688 * Fixed multiple PCI devices with PCI IDS. Closes: #599741 Thanks to Geoff Simmons for the patches! * Removed BCM4312 as a supported chipset. Closes: #617394 * Change debhelper to 7.0.50 in B-D. * Bump Standard Versions 3.9.1 . * Switch compat level 4 to 7 . Checksums-Sha1: c6dd15a040a3cd9589b199465cf0d27889f7b738 1964 b43-fwcutter_014-1.dsc 234f59a7999d063833b9f425f1f1d56f44d5d9c4 16055 b43-fwcutter_014.orig.tar.bz2 dbabe9b5d017e620a1d057ff1c63515e0c1d31ea 8234 b43-fwcutter_014-1.debian.tar.gz a8bdfca21de17c492bfbeb9a2a913c3adaf283d5 7114 firmware-b43-installer_014-1_all.deb da2073c6726f2e05fb34ea5bd12674db18c9f6ae 6740 firmware-b43legacy-installer_014-1_all.deb 95623e8404d25799d2fb2870f7dcec98c9fe23a4 6868 firmware-b43-lpphy-installer_014-1_all.deb 933b5e7a9b52eb6113c4e0abcb4d62772963e931 1915
Bug#622962: marked as done (b43 firmware is too old)
Your message dated Thu, 21 Apr 2011 17:32:23 + with message-id and subject line Bug#622962: fixed in b43-fwcutter 1:014-1 has caused the Debian Bug report #622962, regarding b43 firmware is too old to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 622962: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622962 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: firmware-b43-installer Version: 4.150.10.5-5 Hi, I'm using a BCM4311. With this package installed, I get this: b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10) However a year ago when I installed my system, I didn't find this package, and grabbed the files manually, and I get this: b43-phy0: Loading firmware version 478.104 (2008-07-01 00:50:23) My device works with both versions. Still, it would be nice if you could provide the newest version. I'll be glad to provide my files upon request. -- Fejes József http://joco.name --- End Message --- --- Begin Message --- Source: b43-fwcutter Source-Version: 1:014-1 We believe that the bug you reported is fixed in the latest version of b43-fwcutter, which is due to be installed in the Debian FTP archive: b43-fwcutter_014-1.debian.tar.gz to contrib/b/b43-fwcutter/b43-fwcutter_014-1.debian.tar.gz b43-fwcutter_014-1.dsc to contrib/b/b43-fwcutter/b43-fwcutter_014-1.dsc b43-fwcutter_014-1_amd64.deb to contrib/b/b43-fwcutter/b43-fwcutter_014-1_amd64.deb b43-fwcutter_014.orig.tar.bz2 to contrib/b/b43-fwcutter/b43-fwcutter_014.orig.tar.bz2 firmware-b43-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43-installer_014-1_all.deb firmware-b43-lpphy-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43-lpphy-installer_014-1_all.deb firmware-b43legacy-installer_014-1_all.deb to contrib/b/b43-fwcutter/firmware-b43legacy-installer_014-1_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 622...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Daniel Echeverry (supplier of updated b43-fwcutter package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 19 Apr 2011 20:26:59 -0500 Source: b43-fwcutter Binary: b43-fwcutter firmware-b43-installer firmware-b43-lpphy-installer firmware-b43legacy-installer Architecture: source all amd64 Version: 1:014-1 Distribution: unstable Urgency: low Maintainer: Fabrizio Regalli Changed-By: Daniel Echeverry Description: b43-fwcutter - Utility for extracting Broadcom 43xx firmware firmware-b43-installer - Installer package for firmware for the b43 driver firmware-b43-lpphy-installer - Installer package for firmware for the b43 driver (LP-PHY version firmware-b43legacy-installer - Installer package for firmware for the b43legacy driver Closes: 581798 599741 617394 617688 622962 Changes: b43-fwcutter (1:014-1) unstable; urgency=low . [ Fabrizio Regalli ] * New maintainers. Closes: #581798 * Added new firmware 478.104 to some non-lpphy cards. Closes: #622962 * Added Vcs-* repository. * Removed duplicate 'Homepage' fields to make lintian happy. * Moved to BinNMU. . [Daniel Echeverry ] * New upstream release. * Update copyright file to DEP5. Closes: #617688 * Fixed multiple PCI devices with PCI IDS. Closes: #599741 Thanks to Geoff Simmons for the patches! * Removed BCM4312 as a supported chipset. Closes: #617394 * Change debhelper to 7.0.50 in B-D. * Bump Standard Versions 3.9.1 . * Switch compat level 4 to 7 . Checksums-Sha1: c6dd15a040a3cd9589b199465cf0d27889f7b738 1964 b43-fwcutter_014-1.dsc 234f59a7999d063833b9f425f1f1d56f44d5d9c4 16055 b43-fwcutter_014.orig.tar.bz2 dbabe9b5d017e620a1d057ff1c63515e0c1d31ea 8234 b43-fwcutter_014-1.debian.tar.gz a8bdfca21de17c492bfbeb9a2a913c3adaf283d5 7114 firmware-b43-installer_014-1_all.deb da2073c6726f2e05fb34ea5bd12674db18c9f6ae 6740 firmware-b43legacy-installer_014-1_all.deb 95623e8404d25799d2fb2870f7dcec98c9fe23a4 6868 firmware-b43-lpphy-installer_014-1_all.deb 933b5e7a9b52eb6113c4e0abcb4d62772963e931 19158 b43-fwcutter_014-1_amd64.deb Checksums-Sha256: ee2d0a048452cd26966509ffb76ac8c34c0fb959cb3e007b28f6c8a36f8cc770 1964 b43-fwcutter_014-1.dsc d8ed07047d4a7e
Processing of ca-certificates_20110421_amd64.changes
ca-certificates_20110421_amd64.changes uploaded successfully to localhost along with the files: ca-certificates_20110421.dsc ca-certificates_20110421.tar.gz ca-certificates_20110421_all.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1qczyt-0007y5...@franck.debian.org
ca-certificates_20110421_amd64.changes ACCEPTED into unstable
Accepted: ca-certificates_20110421.dsc to main/c/ca-certificates/ca-certificates_20110421.dsc ca-certificates_20110421.tar.gz to main/c/ca-certificates/ca-certificates_20110421.tar.gz ca-certificates_20110421_all.deb to main/c/ca-certificates/ca-certificates_20110421_all.deb Override entries for your package: ca-certificates_20110421.dsc - source misc ca-certificates_20110421_all.deb - optional misc Announcing to debian-devel-chan...@lists.debian.org Closing bugs: 611102 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1qczbk-hm...@franck.debian.org
Bug#623648: libxbae4: is the libxp dependency necessary?
Package: libxbae4 Version: 4.60.2-3 Severity: wishlist The xprint package is obsolete and scheduled for removal. A related library is libxp, which provides an API that enables client programs to access and use an Xprint server. Since we're getting rid of xprint, one could argue it makes sense to get rid of libxp as well. Your package depends on libxp. This situation sometimes arises historically from the time before xprint was considered obsolete, with Build-depends: libxp-dev being set in the past and then forgotten and untouched. This bug has been filed to prompt you to check if you really want Xprint (libxp) support in your package. We'll leave libxp in the archives for the time being until you and the other packages using it have determined whether you want to keep the dependency. But we'll be removing xprint itself and other related packages now. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.38-2-amd64 (SMP w/2 CPU cores) Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20110422015337.27849.30708.reportbug@localhost.localdomain
Bug#623650: mtink: is the libxp dependency necessary?
Package: mtink Version: 1.0.16-3 Severity: wishlist The xprint package is obsolete and scheduled for removal. A related library is libxp, which provides an API that enables client programs to access and use an Xprint server. Since we're getting rid of xprint, one could argue it makes sense to get rid of libxp as well. Your package depends on libxp. This situation sometimes arises historically from the time before xprint was considered obsolete, with Build-depends: libxp-dev being set in the past and then forgotten and untouched. This bug has been filed to prompt you to check if you really want Xprint (libxp) support in your package. We'll leave libxp in the archives for the time being until you and the other packages using it have determined whether you want to keep the dependency. But we'll be removing xprint itself and other related packages now. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.38-2-amd64 (SMP w/2 CPU cores) Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20110422015513.27963.50051.reportbug@localhost.localdomain
Bug#623651: twpsk: is the libxp dependency necessary?
Package: twpsk Version: 3.0-3 Severity: wishlist The xprint package is obsolete and scheduled for removal. A related library is libxp, which provides an API that enables client programs to access and use an Xprint server. Since we're getting rid of xprint, one could argue it makes sense to get rid of libxp as well. Your package depends on libxp. This situation sometimes arises historically from the time before xprint was considered obsolete, with Build-depends: libxp-dev being set in the past and then forgotten and untouched. This bug has been filed to prompt you to check if you really want Xprint (libxp) support in your package. We'll leave libxp in the archives for the time being until you and the other packages using it have determined whether you want to keep the dependency. But we'll be removing xprint itself and other related packages now. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.38-2-amd64 (SMP w/2 CPU cores) Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20110422015604.28016.81432.reportbug@localhost.localdomain
Bug#623651: twpsk: is the libxp dependency necessary?
In your case the libxp6 dependency may be indirect via lesstif2-dev. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/1303444002.26732.16.camel@pug
Bug#623650: mtink: is the libxp dependency necessary?
In your case the libxp6 dependency may be indirect via lesstif2-dev. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/1303444051.26732.17.camel@pug
Bug#623671: ca-certificates: some certificates not installing and getting errors
Package: ca-certificates Version: 20110421 Severity: normal *** Please type your report below this line *** Got few errors when it was installing the new cacertificates. Output from running aptitude safe-upgrade. Updating certificates in /etc/ssl/certs... WARNING: Skipping duplicate certificate ca-certificates.crt WARNING: Skipping duplicate certificate ca-certificates.crt WARNING: Skipping duplicate certificate cert_igca_rsa.pem WARNING: Skipping duplicate certificate cert_igca_rsa.pem 43 added, 27 removed; done. Running hooks in /etc/ca-certificates/update.d updating keystore /etc/ssl/certs/java/cacerts... added: /etc/ssl/certs/ACEDICOM_Root.pem error adding /etc/ssl/certs/AC_Raíz_Certicámara_S.A..pem added: /etc/ssl/certs/ApplicationCA_-_Japanese_Government.pem added: /etc/ssl/certs/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem added: /etc/ssl/certs/Buypass_Class_2_CA_1.pem added: /etc/ssl/certs/Buypass_Class_3_CA_1.pem added: /etc/ssl/certs/CA_Disig.pem added: /etc/ssl/certs/Certigna.pem added: /etc/ssl/certs/certSIGN_ROOT_CA.pem added: /etc/ssl/certs/Chambers_of_Commerce_Root_-_2008.pem added: /etc/ssl/certs/CNNIC_ROOT.pem added: /etc/ssl/certs/ComSign_CA.pem added: /etc/ssl/certs/ComSign_Secured_CA.pem added: /etc/ssl/certs/Cybertrust_Global_Root.pem added: /etc/ssl/certs/Deutsche_Telekom_Root_CA_2.pem error adding /etc/ssl/certs/EBG_Elektronik_Sertifika_Hizmet_Sağlayıcısı.pem added: /etc/ssl/certs/E-Guven_Kok_Elektronik_Sertifika_Hizmet_Saglayicisi.pem added: /etc/ssl/certs/ePKI_Root_Certification_Authority.pem added: /etc/ssl/certs/GeoTrust_Primary_Certification_Authority_-_G2.pem added: /etc/ssl/certs/GeoTrust_Primary_Certification_Authority_-_G3.pem added: /etc/ssl/certs/Global_Chambersign_Root_-_2008.pem added: /etc/ssl/certs/GlobalSign_Root_CA_-_R3.pem added: /etc/ssl/certs/Hongkong_Post_Root_CA_1.pem added: /etc/ssl/certs/IGC_A.pem added: /etc/ssl/certs/Izenpe.com.pem added: /etc/ssl/certs/Juur-SK.pem added: /etc/ssl/certs/Microsec_e-Szigno_Root_CA_2009.pem added: /etc/ssl/certs/Microsec_e-Szigno_Root_CA.pem error adding /etc/ssl/certs/NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem added: /etc/ssl/certs/OISTE_WISeKey_Global_Root_GA_CA.pem added: /etc/ssl/certs/SecureSign_RootCA11.pem added: /etc/ssl/certs/Security_Communication_EV_RootCA1.pem added: /etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G2.pem added: /etc/ssl/certs/S-TRUST_Authentication_and_Encryption_Root_CA_2005_PN.pem added: /etc/ssl/certs/TC_TrustCenter_Class_2_CA_II.pem added: /etc/ssl/certs/TC_TrustCenter_Class_3_CA_II.pem added: /etc/ssl/certs/TC_TrustCenter_Universal_CA_I.pem added: /etc/ssl/certs/TC_TrustCenter_Universal_CA_III.pem added: /etc/ssl/certs/thawte_Primary_Root_CA_-_G2.pem added: /etc/ssl/certs/thawte_Primary_Root_CA_-_G3.pem error adding /etc/ssl/certs/TÜBİTAK_UEKAE_Kök_Sertifika_Hizmet_Sağlayıcısı_-_Sürüm_3.pem added: /etc/ssl/certs/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem added: /etc/ssl/certs/VeriSign_Universal_Root_Certification_Authority.pem does not exist: /etc/ssl/certs/ABAecom_=sub.__Am._Bankers_Assn.=_Root_CA.pem does not exist: /etc/ssl/certs/beTRUSTed_Root_CA-Baltimore_Implementation.pem does not exist: /etc/ssl/certs/beTRUSTed_Root_CA.pem does not exist: /etc/ssl/certs/beTRUSTed_Root_CA_-_Entrust_Implementation.pem does not exist: /etc/ssl/certs/beTRUSTed_Root_CA_-_RSA_Implementation.pem does not exist: /etc/ssl/certs/Digital_Signature_Trust_Co._Global_CA_2.pem does not exist: /etc/ssl/certs/Digital_Signature_Trust_Co._Global_CA_4.pem does not exist: /etc/ssl/certs/Entrust.net_Global_Secure_Personal_CA.pem does not exist: /etc/ssl/certs/Entrust.net_Global_Secure_Server_CA.pem does not exist: /etc/ssl/certs/Entrust.net_Secure_Personal_CA.pem does not exist: /etc/ssl/certs/GTE_CyberTrust_Root_CA.pem does not exist: /etc/ssl/certs/IPS_Chained_CAs_root.pem does not exist: /etc/ssl/certs/IPS_CLASE1_root.pem does not exist: /etc/ssl/certs/IPS_CLASE3_root.pem does not exist: /etc/ssl/certs/IPS_CLASEA1_root.pem does not exist: /etc/ssl/certs/IPS_CLASEA3_root.pem does not exist: /etc/ssl/certs/IPS_Servidores_root.pem does not exist: /etc/ssl/certs/IPS_Timestamping_root.pem does not exist: /etc/ssl/certs/RSA_Security_1024_v3.pem does not exist: /etc/ssl/certs/StartCom_Ltd..pem does not exist: /etc/ssl/certs/Thawte_Personal_Basic_CA.pem does not exist: /etc/ssl/certs/Thawte_Personal_Premium_CA.pem does not exist: /etc/ssl/certs/UTN-USER_First-Network_Applications.pem does not exist: /etc/ssl/certs/Verisign_RSA_Secure_Server_CA.pem does not exist: /etc/ssl/certs/Verisign_Time_Stamping_Authority_CA.pem does not exist: /etc/ssl/certs/Visa_International_Global_Root_2.pem removed /etc/ssl/certs/deutsche-telekom-root-ca-2.pem failed (VM used: java-6-openjdk). E: /etc/ca-certificates/update.d/jks-keystore exited with code 1. done