[Bug 1961607] Re: sessionclean will never run?

2022-02-21 Thread Bob Tanner
Sorry.

Isn't the directory check on /run/systemd/system going to be true on any
modern ubuntu system? And the "not directory" check will be false and
/usr/lib/php/sessionclean is never going to be executed?

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

Title:
  sessionclean will never run?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php-defaults/+bug/1961607/+subscriptions


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

[Bug 1961607] [NEW] sessionclean will never run?

2022-02-21 Thread Bob Tanner
Public bug reported:

$ lsb_release -rd
Description:Ubuntu 20.04.4 LTS
Release:20.04

$ apt-cache policy php-common
php-common:
  Installed: (none)
  Candidate: 2:75
  Version table:
 2:75 500
500 http://us.archive.ubuntu.com/ubuntu focal/main amd64 Packages

I expect /usr/lib/php/sessionclean to run ever 30 minutes

/etc/cron.d# cat php
# /etc/cron.d/php@PHP_VERSION@: crontab fragment for PHP
#  This purges session files in session.save_path older than X,
#  where X is defined in seconds as the largest value of
#  session.gc_maxlifetime from all your SAPI php.ini files
#  or 24 minutes if not defined.  The script triggers only
#  when session.save_handler=files.
#
#  WARNING: The scripts tries hard to honour all relevant
#  session PHP options, but if you do something unusual
#  you have to disable this script and take care of your
#  sessions yourself.

# Look for and purge old sessions every 30 minutes
09,39 * * * * root   [ -x /usr/lib/php/sessionclean ] && if [ ! -d 
/run/systemd/system ]; then /usr/lib/php/sessionclean; fi

Isn't the directory check for /run/systemd/system going to be false on
any modern ubuntu system? And /usr/lib/php/sessionclean is never going
to be executed?

** Affects: php-defaults (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  sessionclean will never run?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php-defaults/+bug/1961607/+subscriptions


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

[Bug 1905109] Re: Setting session.cookie_samesite=None in php ini does not set attribute of session samesite

2020-12-04 Thread Bob Tanner
Getting past a SRU review is a heavy lift without a guaranteed
successful outcome/fix/patch.

I've convinced the powers that be to allow me to use a php7.4 PPA to fix
the bug.

I'll state this again.

I'm surprised more people have not opened bugs or complained. As a php
developer attempting to use PayPal Payflow Pro anyone with Chrome 80+
will not be able to use your web site with the bug in current release of
php in bionic.

You can close this bug.

Thank you.

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

Title:
  Setting session.cookie_samesite=None in php ini does not set attribute
  of session samesite

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1905109/+subscriptions

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

[Bug 1905109] Re: Setting session.cookie_samesite=None in php ini does not set attribute of session samesite

2020-11-25 Thread Bob Tanner
If this php7.2 bug is not fixed the changes to cookies defaults in
Chrome 80+ breaks many sites.

Like a webhook call back from PayPal (my problem) but any web site the
requires SameSite=None will be broken.

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

Title:
  Setting session.cookie_samesite=None in php ini does not set attribute
  of session samesite

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1905109/+subscriptions

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

[Bug 1905109] Re: Setting session.cookie_samesite=None in php ini does not set attribute of session samesite

2020-11-24 Thread Bob Tanner
Adding the link

https://github.com/php/php-
src/commit/2b58ab23c6ad3301b31a2015f5faa31801147dfd

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

Title:
  Setting session.cookie_samesite=None in php ini does not set attribute
  of session samesite

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1905109/+subscriptions

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

[Bug 1905109] Re: Setting session.cookie_samesite=None in php ini does not set attribute of session samesite

2020-11-24 Thread Bob Tanner
Maybe this commit?

commit 2b58ab23c6ad3301b31a2015f5faa31801147dfd
Author: Pedro Magalhães 
Date:   Thu Jul 19 02:40:39 2018 +0100

Support for samesite cookies with array syntax

Allows using an alternative array argument with
support for the samesite option on the following
functions:
setcookie
setrawcookie
session_set_cookie_params

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

Title:
  Setting session.cookie_samesite=None in php ini does not set attribute
  of session samesite

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1905109/+subscriptions

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

[Bug 1905109] Re: Setting session.cookie_samesite=None in php ini does not set attribute of session samesite

2020-11-24 Thread Bob Tanner
I believe this is the upstream change log entry that address the
SameSite cookie issue I'm experiencing with the bionic php7.2 packaged.

https://www.php.net/ChangeLog-7.php#7.2.34

Added support for the SameSite cookie directive, including an
alternative signature for setcookie(), setrawcookie() and
session_set_cookie_params().

My fault for not including all information.

cat /etc/issue
Ubuntu 18.04.5 LTS \n \l

php7.2.24-0ubuntu0.18.04.7

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

Title:
  Setting session.cookie_samesite=None in php ini does not set attribute
  of session samesite

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1905109/+subscriptions

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

[Bug 1905109] [NEW] Setting session.cookie_samesite=None in php ini does not set attribute of session samesite

2020-11-20 Thread Bob Tanner
Public bug reported:

I think this issue is related to the bug tracked at
https://bugs.php.net/bug.php?id=78651

Test script:

 'None',
'Secure' => true
]);

session_start();
var_dump($_SESSION);
?>

Developer Tools results of the script run with php7.2 and Chrome
87.0.4280.67 show a checkmark in the Secure column, nothing/blank in the
SameSite column, Medium in the Priority column.

Developer Tools results of the script run with php7.4 and Chrome
87.0.4280.67 show a checkmark in the Secure column, "None" (no quotes"
in the SameSite column, Medium in the Priority column.

** Affects: php-defaults (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Setting session.cookie_samesite=None in php ini does not set attribute
  of session samesite

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php-defaults/+bug/1905109/+subscriptions

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

[Bug 1883331] [NEW] DEBIAN_FRONTEND=noninteractive results in failed installation

2020-06-12 Thread Bob Tanner
Public bug reported:

# lsb_release -rd 
Description:Ubuntu Focal Fossa (development branch)
Release:20.04

# apt-cache policy postfix
postfix:
  Installed: 3.4.10-1ubuntu1
  Candidate: 3.4.10-1ubuntu1
  Version table:
 *** 3.4.10-1ubuntu1 500
500 http://archive.ubuntu.com/ubuntu focal/main amd64 Packages
100 /var/lib/dpkg/status

# echo $DEBIAN_FRONTEND   
noninteractive

Preparing to unpack .../postfix_3.4.10-1ubuntu1_amd64.deb ...
Unpacking postfix (3.4.10-1ubuntu1) ...
Setting up postfix (3.4.10-1ubuntu1) ...
Adding group `postfix' (GID 109) ...
Done.
Adding system user `postfix' (UID 106) ...
Adding new user `postfix' (UID 106) with group `postfix' ...
Not creating home directory `/var/spool/postfix'.
Creating /etc/postfix/dynamicmaps.cf
Adding group `postdrop' (GID 110) ...
Done.
setting myhostname: ubuntu-20.04
setting alias maps
setting alias database
setting myorigin
setting destinations: $myhostname, ubuntu-20.04, localhost.04, , localhost
setting relayhost: 
setting mynetworks: 127.0.0.0/8 [:::127.0.0.0]/104 [::1]/128
setting mailbox_size_limit: 0
setting recipient_delimiter: +
setting inet_interfaces: all
setting inet_protocols: all
WARNING: /etc/aliases exists, but does not have a root alias.

Postfix (main.cf) is now set up with a default configuration.  If you need to 
make changes, edit /etc/postfix/main.cf (and others) as needed.  To view 
Postfix configuration values, see postconf(1).

After modifying main.cf, be sure to run 'systemctl reload postfix'.

Running newaliases
newaliases: warning: valid_hostname: numeric hostname: 04
newaliases: fatal: file /etc/postfix/main.cf: parameter mydomain: bad parameter 
value: 04
dpkg: error processing package postfix (--configure):
 installed postfix package post-installation script subprocess returned error 
exit status 75
Processing triggers for systemd (244.3-1ubuntu1) ...
Processing triggers for rsyslog (8.2001.0-1ubuntu1) ...
invoke-rc.d: policy-rc.d denied execution of try-restart.
Processing triggers for libc-bin (2.31-0ubuntu6) ...
Errors were encountered while processing:
 postfix
E: Sub-process /usr/bin/dpkg returned an error code (1)
root@ubuntu-20:/# dpkg -l | grep postfix
iF  postfix   3.4.10-1ubuntu1 amd64
High-performance mail transport agent

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

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

Title:
  DEBIAN_FRONTEND=noninteractive results in failed installation

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

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

[Bug 1622728] Re: PHP version conflict for PHPBB3 on Xenial

2017-05-04 Thread Bob Tanner
Any status on the ppa?

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

Title:
  PHP version conflict for PHPBB3 on Xenial

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

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


[Bug 1652185] [NEW] kernel BUG at /build/linux-7x12eW/linux-4.4.0/drivers/ata/sata_mv.c:2120!

2016-12-22 Thread Bob Tanner
Public bug reported:

# lsb_release -rd
Description:Ubuntu 16.04.1 LTS
Release:16.04

# apt-cache policy linux-image-4.4.0-57-generic
linux-image-4.4.0-57-generic:
  Installed: 4.4.0-57.78
  Candidate: 4.4.0-57.78
  Version table:
 *** 4.4.0-57.78 500
500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
500 http://security.ubuntu.com/ubuntu xenial-security/main amd64 
Packages
100 /var/lib/dpkg/status


Dec 22 16:59:20 crashplan-2 kernel: [ 9534.464076] [ cut here 
]
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.464173] kernel BUG at 
/build/linux-7x12eW/linux-4.4.0/drivers/ata/sata_mv.c:2120!
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.464281] invalid opcode:  [#1] SMP
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.464355] Modules linked in: 
binfmt_misc zfs(PO) zunicode(PO) zcommon(PO) znvpair(PO) spl(O) zavl(PO) 
gpio_ich ppdev i5000_edac edac_core parport_pc i5k_amb coretemp kvm parport 
irqbypass lpc_ich serio_raw input_leds 8250_fintek shpchp mac_hid ib_iser 
rdma_cm iw_cm ib_cm ib_sa ib_mad ib_core ib_addr iscsi_tcp libiscsi_tcp 
libiscsi scsi_transport_iscsi autofs4 btrfs raid10 raid456 async_raid6_recov 
async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 
multipath linear hid_generic usbhid hid amdkfd amd_iommu_v2 radeon i2c_algo_bit 
ttm drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops drm pata_acpi 
e1000e ptp pps_core sata_mv floppy fjes
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.466220] CPU: 0 PID: 198 Comm: 
scsi_eh_15 Tainted: P   O4.4.0-57-generic #78-Ubuntu
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.466355] Hardware name: Supermicro 
X7DB8/X7DB8, BIOS 6.00 12/03/2007
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.466452] task: 880034c40cc0 ti: 
880034c4c000 task.ti: 880034c4c000
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.466564] RIP: 
0010:[]  [] mv_qc_prep+0x213/0x230 [sata_mv]
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.466717] RSP: 0018:880034c4fa30  
EFLAGS: 00010006
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.466797] RAX: 8800353188c0 RBX: 
8800352bdd70 RCX: 0047
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.466893] RDX: 8800353188ca RSI: 
88012a6af060 RDI: 8800352bdd70
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.466993] RBP: 880034c4fa48 R08: 
 R09: 0001
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.467092] R10: 0020 R11: 
 R12: 003f
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.467191] R13: 880035083c18 R14: 
0001 R15: 8800352bdd70
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.467291] FS:  () 
GS:88012fc0() knlGS:
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.467412] CS:  0010 DS:  ES:  
CR0: 8005003b
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.467489] CR2: 7f284278bc00 CR3: 
cb676000 CR4: 06f0
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.467588] Stack:
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.467628]  8800352bc000 
0001 8800352bde80 880034c4faa0
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.467774]  815d9caa 
88012a6af098 81e2c360 880034c4fb70
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.467920]  000281d1863d 
880034c4fbe0 8800352bde80 
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017] Call Trace:
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
ata_qc_issue+0x15a/0x390
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
ata_exec_internal_sg+0x302/0x600
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
ata_exec_internal+0x69/0xc0
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] ? 
blk_peek_request+0x4b/0x290
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
ata_read_log_page.part.11+0x196/0x1d0
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
ata_eh_analyze_ncq_error+0x111/0x280
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
ata_eh_link_autopsy+0x9a/0x950
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
ata_eh_autopsy+0x2b/0xf0
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
sata_pmp_error_handler+0x12/0x30
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
mv_pmp_error_handler+0x93/0xa0 [sata_mv]
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
ata_scsi_port_error_handler+0x430/0x770
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] ? 
ata_scsi_cmd_error_handler+0x11d/0x150
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
ata_scsi_error+0xa0/0xe0
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
scsi_error_handler+0xdb/0x8a0
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] ? 
__schedule+0x3b6/0xa30
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] ? 
scsi_eh_get_sense+0x240/0x240
Dec 22 16:59:20 crashplan-2 kernel: [ 9534.468017]  [] 
kthread+0xd8/0xf0
Dec 22 16:59:20 crashplan-2 

[Bug 1561250] Re: Xenial vagrant image is missing its hostname in /etc/hosts

2016-07-04 Thread Bob Tanner
Any status update?

'ubuntu/xenial64' (v20160627.0.0) for 'virtualbox' still has the
problem.


Repeating my 06/19 post:

Is there a HOWTO or link for how to build the xenial image?

Might be easier for us to help troubleshoot the problem if we could
build the xenial image, fix what's wrong, and submit the patches back?

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

Title:
  Xenial vagrant image is missing its hostname in /etc/hosts

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-images/+bug/1561250/+subscriptions

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


Re: [Bug 1561250] Xenial vagrant image is missing its hostname in /etc/hosts

2016-06-20 Thread Bob Tanner
> On Jun 19, 2016, at 7:51 PM, Robert Hafner <ted...@tedivm.com> wrote:
> 
> In your VagrantFile use the config.vm.hostname option to specify a
> hostname-
> 
> config.vm.hostname = "vagrant"

Still get the error.

  config.vm.define "testing_xenial64" do |testing_xenial64|
testing_xenial64.vm.box = "ubuntu/xenial64"
config.vm.network "public_network", bridge: "en0: Wi-Fi (AirPort)", 
auto_config: true
config.vm.hostname = “ubuntu-xenial"

$ vagrant up --provision testing_xenial64


The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

hostname -f

Stdout from the command:


Stderr from the command:

sudo: unable to resolve host ubuntu-xenial
mesg: ttyname failed: Inappropriate ioctl for device
hostname: Name or service not known

--
Bob Tanner <tan...@real-time.com> | Phone : 
952-943-8700
http://www.real-time.com, Linux, OSX, VMware, Windows | Fax  : 952-943-8500
Key fingerprint = 9906 320A 8BB6 64AD 96A7  7785 CBFB 10BF 568B F98C

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

Title:
  Xenial vagrant image is missing its hostname in /etc/hosts

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-images/+bug/1561250/+subscriptions

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

[Bug 1561250] Re: Xenial vagrant image is missing its hostname in /etc/hosts

2016-06-19 Thread Bob Tanner
Is there a HOWTO or link for how to build the xenial image?

Might be easier for us to help troubleshoot the problem if we could
build the xenial image, fix what's wrong, and submit the patches back?

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

Title:
  Xenial vagrant image is missing its hostname in /etc/hosts

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-images/+bug/1561250/+subscriptions

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


[Bug 1561250] Re: Xenial vagrant image is missing its hostname in /etc/hosts

2016-06-02 Thread Bob Tanner
host: OS X 10.11.5

$ vboxmanage --version
5.0.20r106931

$ vagrant --version
Vagrant 1.8.1

$ vagrant init ubuntu/xenial64


$ vagrant box list|grep xenial
ubuntu/xenial64   (virtualbox, 20160531.0.0)

$ vagrant up


$ vagrant ssh -- sudo grep hosts /etc/nsswitch.conf
sudo: unable to resolve host ubuntu-xenial
hosts: files dns

$ vagrant ssh -- sudo grep ubuntu /etc/hosts
sudo: unable to resolve host ubuntu-xenial

$ vagrant ssh -- sudo grep 127 /etc/hosts
sudo: unable to resolve host ubuntu-xenial
127.0.0.1 localhost

$ cat /etc/hosts
127.0.0.1 localhost

# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

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

Title:
  Xenial vagrant image is missing its hostname in /etc/hosts

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-images/+bug/1561250/+subscriptions

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


[Bug 1561250] Re: Xenial vagrant image is missing its hostname in /etc/hosts

2016-06-02 Thread Bob Tanner
I'll be surprised if the problem is in the Virtualbox 5.0.20, what is
the xenial image you are testing against Dan? Your vagrant box list |
grep xenial?

I had the same problem with 5.0.18, but no longer have it installed.

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

Title:
  Xenial vagrant image is missing its hostname in /etc/hosts

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-images/+bug/1561250/+subscriptions

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


[Bug 1561250] Re: Xenial vagrant image is missing its hostname in /etc/hosts

2016-05-28 Thread Bob Tanner
Still see the problems with 'ubuntu/xenial64' (v20160527.0.0)

Switching from the user vagrant and ssh key authentication to user
ubuntu and password authentication lets things progress a little further
but run into hostname problem.

The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

/sbin/ifdown eth1 2> /dev/null

Stdout from the command:

Stderr from the command:

sudo: unable to resolve host ubuntu-xenial
mesg: ttyname failed: Inappropriate ioctl for device

Which looks like this is tracked in:

https://bugs.launchpad.net/cloud-images/+bug/1565985

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

Title:
  Xenial vagrant image is missing its hostname in /etc/hosts

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-images/+bug/1561250/+subscriptions

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


[Bug 1411371] [NEW] Use FQDN in apt-listchanges report

2015-01-15 Thread Bob Tanner
Public bug reported:

Really a WISHLIST item.

I have many virtual machines running ubuntu/apache2 all with apt-
listchanges installed, all named www.domain.com.  When I get my emailed
reports the subject is apt-listchanges: changelogs for www for every
single VM. Not very useful.

It would be fair better for the subject to be apt-listchanges:
changelings for www.domain.com (the FQDN for the host).

apt-listchanges uses the following python code to set the hostname for
the report

hostname = commands.getoutput('hostname')

I'd like to propose that the command be changed to

hostname = commands.getoutput('hostname -f')

Or a parameter set in /etc/apt/listchanges.conf

Yes, I could change the hostname of the VM to the FQDN but the Debian
reference http://www.debian.org/doc/manuals/debian-
reference/ch03.en.html#_the_hostname says the hostname should not use
the FQDN:

3.5.5. The hostname

The kernel maintains the system hostname. The init script in runlevel S
which is symlinked to /etc/init.d/hostname.sh sets the system hostname
at boot time (using the hostname command) to the name stored in
/etc/hostname. This file should contain only the system hostname, not
a fully qualified domain name.

I can do the coding/work, if I get guidance.

Thanks.

** Affects: apt-listchanges (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Use FQDN in apt-listchanges report

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt-listchanges/+bug/1411371/+subscriptions

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


[Bug 920610] Re: Message rejected due to uses dead openspf.org url

2012-01-23 Thread Bob Tanner
** Patch added: Change openspf.org to openspf.net
   
https://bugs.launchpad.net/bugs/920610/+attachment/2689432/+files/org-to-net.patch

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

Title:
  Message rejected due to uses dead openspf.org url

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pypolicyd-spf/+bug/920610/+subscriptions

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


[Bug 920610] [NEW] Message rejected due to uses dead openspf.org url

2012-01-23 Thread Bob Tanner
Public bug reported:

When I site fails SPF checks the Message rejected due to message uses
a dead openspf.org domain. Example below:

Recipient address rejected: Message rejected due to: domain owner discourages 
use of this host. Please see 
http://www.openspf.org/Why?s=helo;id=mail..com;ip=X.X.X.X;r=u...@domain.com;

www.openspf.org has been down for months.

BUT the www.openspf.net is working.

Could www.openspf.org be replaced with www.openspf.net?

Patch included.

** Affects: pypolicyd-spf (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Message rejected due to uses dead openspf.org url

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pypolicyd-spf/+bug/920610/+subscriptions

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


[Bug 773014] Re: Natty: GUI occasionally does not register mouse / touchpad clicks

2011-06-07 Thread Bob Tanner
*** This bug is a duplicate of bug 709461 ***
https://bugs.launchpad.net/bugs/709461

Same issue here on (although i am running Mint 11).

Every once in a while a mouse click won't register, as if something is
blocking input to the region of the screen I am clicking on.  I can
confirm that comment #14 (move window around), will then register the
click.

In addition, I notice an odd problem with window focus that sometimes
occurs too (seems related). For example if one window is partially
covering another window, clicking on the partially hidden window does
not bring it to the forefront, but it does seem to grab focus.

I am running the recomended proprietary nvidia driver 270.41.06  with a
Geforce 9500 GT

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

Title:
  Natty: GUI occasionally does not register mouse / touchpad clicks

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


[Bug 760632] Re: Resizing Konsole crashes the whole system

2011-05-30 Thread Bob Tanner
Same problem here... Brand new installation of Kubuntu, resized konsole
and wham, total system freeze... If I disable transparency, the system
does not freeze, but results in strange artifacts all over the screen...

Also, on a side note, I would to add that it's a shame to see so many
people trashing  nvidia on this bug report... No other gfx manufacturer
has provided Linux support for as long as nvidia has.  And no other gfx
card manufacturer's product works as well with Linux as theirs...  No,
they are not perfect and they can probably do better, but at least they
actually DO provide a pretty decent driver.

outside of this issue, I can't remember the last time I had an issue
with the nvidia driver, and that's pretty darn good!

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

Title:
  Resizing Konsole crashes the whole system

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


[Bug 769186] [NEW] #!python \\\Bootstrap distribu...1:]) --always-copy -U distribute failed with error code 1

2011-04-22 Thread Bob Tanner
Public bug reported:

Binary package hint: python-virtualenv

$ lsb_release -rd
Description:Ubuntu 10.04.2 LTS
Release:10.04

$ apt-cache policy python-virtualenv
python-virtualenv:
  Installed: 1.4.5-1ubuntu1
  Candidate: 1.4.5-1ubuntu1
  Version table:
 *** 1.4.5-1ubuntu1 0
500 http://us.archive.ubuntu.com/ubuntu/ lucid/universe Packages
100 /var/lib/dpkg/status

$ virtualenv -v --no-site-packages -p python2.6 sandbox
Running virtualenv with interpreter /usr/bin/python2.6
Creating sandbox/lib/python2.6
Symlinking Python bootstrap modules
  Symlinking sandbox/lib/python2.6/sre_parse.py
  Symlinking sandbox/lib/python2.6/sre_compile.pyc
  Symlinking sandbox/lib/python2.6/config
  Symlinking sandbox/lib/python2.6/locale.py
  Symlinking sandbox/lib/python2.6/posixpath.pyc
  Symlinking sandbox/lib/python2.6/abc.py
  Symlinking sandbox/lib/python2.6/copy_reg.pyc
  Symlinking sandbox/lib/python2.6/genericpath.pyc
  Symlinking sandbox/lib/python2.6/_abcoll.py
  Symlinking sandbox/lib/python2.6/warnings.py
  Symlinking sandbox/lib/python2.6/re.pyc
  Symlinking sandbox/lib/python2.6/ntpath.pyc
  Symlinking sandbox/lib/python2.6/sre.py
  Symlinking sandbox/lib/python2.6/UserDict.pyc
  Symlinking sandbox/lib/python2.6/linecache.py
  Symlinking sandbox/lib/python2.6/os.py
  Symlinking sandbox/lib/python2.6/locale.pyc
  Symlinking sandbox/lib/python2.6/codecs.pyc
  Symlinking sandbox/lib/python2.6/stat.pyc
  Symlinking sandbox/lib/python2.6/encodings
  Symlinking sandbox/lib/python2.6/sre.pyc
  Symlinking sandbox/lib/python2.6/stat.py
  Symlinking sandbox/lib/python2.6/posixpath.py
  Symlinking sandbox/lib/python2.6/fnmatch.pyc
  Symlinking sandbox/lib/python2.6/linecache.pyc
  Symlinking sandbox/lib/python2.6/warnings.pyc
  Symlinking sandbox/lib/python2.6/types.pyc
  Symlinking sandbox/lib/python2.6/sre_constants.pyc
  Symlinking sandbox/lib/python2.6/_abcoll.pyc
  Symlinking sandbox/lib/python2.6/sre_compile.py
  Symlinking sandbox/lib/python2.6/sre_constants.py
  Symlinking sandbox/lib/python2.6/sre_parse.pyc
  Symlinking sandbox/lib/python2.6/genericpath.py
  Symlinking sandbox/lib/python2.6/lib-dynload
  Symlinking sandbox/lib/python2.6/fnmatch.py
  Symlinking sandbox/lib/python2.6/UserDict.py
  Symlinking sandbox/lib/python2.6/os.pyc
  Symlinking sandbox/lib/python2.6/copy_reg.py
  Symlinking sandbox/lib/python2.6/types.py
  Symlinking sandbox/lib/python2.6/ntpath.py
  Symlinking sandbox/lib/python2.6/re.py
  Symlinking sandbox/lib/python2.6/abc.pyc
  Symlinking sandbox/lib/python2.6/codecs.py
Creating sandbox/lib/python2.6/site-packages
Writing sandbox/lib/python2.6/site.py
Writing sandbox/lib/python2.6/orig-prefix.txt
Writing sandbox/lib/python2.6/no-global-site-packages.txt
Creating parent directories for sandbox/include
Symlinking sandbox/include/python2.6
Creating sandbox/bin
New python executable in sandbox/bin/python2.6
Changed mode of sandbox/bin/python2.6 to 0755
Also creating executable in sandbox/bin/python
Changed mode of sandbox/bin/python to 0755
Testing executable with sandbox/bin/python2.6 -c import sys; print sys.prefix
Got sys.prefix result: '/home/rte/projects/sandbox'
Creating sandbox/lib/python2.6/distutils
Writing sandbox/lib/python2.6/distutils/__init__.py
Writing sandbox/lib/python2.6/distutils/distutils.cfg
No distribute egg found; downloading
Installing distribute...
  Complete output from command /home/rte/projects/sandbox/bin/python2.6 -c 
#!python
\\\Bootstrap distribu...1:])
 --always-copy -U distribute:
  Extracting in /tmp/tmp_8up8W
Traceback (most recent call last):
  File string, line 477, in module
  File string, line 473, in main
  File string, line 73, in _install
  File /usr/lib/python2.6/tarfile.py, line 1658, in open
raise ReadError(file could not be opened successfully)
tarfile.ReadError: file could not be opened successfully

...Installing distribute...done.
Traceback (most recent call last):
  File /usr/lib/pymodules/python2.6/virtualenv.py, line 1495, in module
main()
  File /usr/lib/pymodules/python2.6/virtualenv.py, line 537, in main
use_setuptools=options.use_setuptools)
  File /usr/lib/pymodules/python2.6/virtualenv.py, line 628, in 
create_environment
install_distribute(py_executable, unzip=unzip_setuptools)
  File /usr/lib/pymodules/python2.6/virtualenv.py, line 364, in 
install_distribute
_install_req(py_executable, unzip, distribute=True)
  File /usr/lib/pymodules/python2.6/virtualenv.py, line 337, in _install_req
cwd=cwd)
  File /usr/lib/pymodules/python2.6/virtualenv.py, line 598, in 
call_subprocess
% (cmd_desc, proc.returncode))
OSError: Command /home/rte/projects/sandbox/bin/python2.6 -c #!python
\\\Bootstrap distribu...1:])
 --always-copy -U distribute failed with error code 1

** Affects: python-virtualenv (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is 

[Bug 726994] [NEW] Failure to create swap directories

2011-02-28 Thread Bob Tanner
Public bug reported:

Binary package hint: squid3

# lsb_release -rd
Description:Ubuntu 10.10
Release:10.10

# apt-cache policy squid3
squid3:
  Installed: 3.1.6-1.1ubuntu1
  Candidate: 3.1.6-1.1ubuntu1
  Version table:
 *** 3.1.6-1.1ubuntu1 0
500 http://archive.ubuntu.com/ubuntu/ maverick/universe amd64 Packages
100 /var/lib/dpkg/status

On installation I expect squid3 to create the swap directories by
default in /var/spool/squid3 this does not happen.

Executing squid3 -z as root should re-create (or create) the swap
directories by default in /var/spool/squid3 this does not happen.

# apt-get install squid3 
snip
Setting up squid3 (3.1.6-1.1ubuntu1) ...
Creating Squid HTTP proxy 3.x spool directory structure
2011/03/01 06:41:54| Creating Swap Directories
Processing triggers for libc-bin ...
ldconfig deferred processing now taking place
# echo $?

# cd /var/spool/squid3/
# ls -al
total 8
drwxr-xr-x 2 proxy proxy 4096 Sep 20 16:12 .
drwxr-xr-x 5 root  root  4096 Mar  1 06:41 ..
#

# squid3 -z -X
2011/03/01 06:45:06.897| command-line -X overrides: ALL,7
2011/03/01 06:45:06.897| CacheManager::registerAction: registering legacy mem
2011/03/01 06:45:06.897| CacheManager::findAction: looking for action mem
2011/03/01 06:45:06.897| Action not found.
2011/03/01 06:45:06.897| CacheManager::registerAction: registered mem
2011/03/01 06:45:06.897| CacheManager::registerAction: registering legacy 
squidaio_counts
2011/03/01 06:45:06.897| CacheManager::findAction: looking for action 
squidaio_counts
2011/03/01 06:45:06.897| Action not found.
2011/03/01 06:45:06.897| CacheManager::registerAction: registered 
squidaio_counts
2011/03/01 06:45:06.897| CacheManager::registerAction: registering legacy diskd
2011/03/01 06:45:06.897| CacheManager::findAction: looking for action diskd
2011/03/01 06:45:06.897| Action not found.
2011/03/01 06:45:06.897| CacheManager::registerAction: registered diskd
2011/03/01 06:45:06.897| Detected IPv6 hybrid or v4-mapping stack...
2011/03/01 06:45:06.897| IPv6 transport Enabled
2011/03/01 06:45:06.897| aclDestroyACLs: invoked
2011/03/01 06:45:06.897| ACL::Prototype::Registered: invoked for type src
2011/03/01 06:45:06.897| ACL::Prototype::Registered:yes
2011/03/01 06:45:06.897| ACL::FindByName 'all'
2011/03/01 06:45:06.898| ACL::FindByName found no match
2011/03/01 06:45:06.898| aclParseAclLine: Creating ACL 'all'
2011/03/01 06:45:06.898| ACL::Prototype::Factory: cloning an object for type 
'src'
2011/03/01 06:45:06.898| aclIpParseIpData: all
2011/03/01 06:45:06.898| aclIpParseIpData: magic 'all' found.
2011/03/01 06:45:06.898| aclParseAclList: looking for ACL name 'all'
2011/03/01 06:45:06.898| ACL::FindByName 'all'
2011/03/01 06:45:06.898| Processing Configuration File: /etc/squid3/squid.conf 
(depth 0)
2011/03/01 06:45:06.899| Processing: 'acl manager proto cache_object'
2011/03/01 06:45:06.899| ACL::Prototype::Registered: invoked for type proto
2011/03/01 06:45:06.899| ACL::Prototype::Registered:yes
2011/03/01 06:45:06.899| ACL::FindByName 'manager'
2011/03/01 06:45:06.899| ACL::FindByName found no match
2011/03/01 06:45:06.899| aclParseAclLine: Creating ACL 'manager'
2011/03/01 06:45:06.899| ACL::Prototype::Factory: cloning an object for type 
'proto'
2011/03/01 06:45:06.899| Processing: 'acl localhost src 127.0.0.1/32 ::1'
2011/03/01 06:45:06.900| ACL::Prototype::Registered: invoked for type src
2011/03/01 06:45:06.900| ACL::Prototype::Registered:yes
2011/03/01 06:45:06.900| ACL::FindByName 'localhost'
2011/03/01 06:45:06.900| ACL::FindByName found no match
2011/03/01 06:45:06.900| aclParseAclLine: Creating ACL 'localhost'
2011/03/01 06:45:06.900| ACL::Prototype::Factory: cloning an object for type 
'src'
2011/03/01 06:45:06.900| aclIpParseIpData: 127.0.0.1/32
2011/03/01 06:45:06.900| aclIpParseIpData: '127.0.0.1/32' matched: SCAN3-v4: 
%[0123456789.]/%[0123456789.]
2011/03/01 06:45:06.900| Ip.cc(509) FactoryParse: Parsed: 
127.0.0.1-[::]/[:::::::](/128)
2011/03/01 06:45:06.900| aclIpParseIpData: ::1
2011/03/01 06:45:06.900| aclIpParseIpData: Lookup Host/IP ::1
2011/03/01 06:45:06.900| aclIpParseIpData: Located host/IP: '[::1]'
2011/03/01 06:45:06.900| ::1 -- [::1]
2011/03/01 06:45:06.900| aclIpParseIpData: Duplicate host/IP: '[::1]' dropped.
2011/03/01 06:45:06.900| aclIpParseIpData: Duplicate host/IP: '[::1]' dropped.
2011/03/01 06:45:06.900| aclIpAddrNetworkCompare: compare: 
127.0.0.1/[:::::::] (127.0.0.1)  vs 
[::1]-[::]/[:::::::]
2011/03/01 06:45:06.900| aclIpAddrNetworkCompare: compare: 
[::1]/[:::::::] ([::1])  vs 
127.0.0.1-[::]/[:::::::]
2011/03/01 06:45:06.900| Processing: 'acl to_localhost dst 127.0.0.0/8 
0.0.0.0/32 ::1'
2011/03/01 06:45:06.900| ACL::Prototype::Registered: invoked for type dst
2011/03/01 06:45:06.900| ACL::Prototype::Registered:yes
2011/03/01 06:45:06.900| 

[Bug 726994] Re: Failure to create swap directories

2011-02-28 Thread Bob Tanner
Removed the comment from the cache_dir value in /etc/squid3/squid.conf

cache_dir ufs /var/spool/squid3 100 16 256

# squid3 -z 
2011/03/01 06:52:02| WARNING cache_mem is larger than total disk cache space!
2011/03/01 06:52:02| Creating Swap Directories
2011/03/01 06:52:02| /var/spool/squid3 exists
2011/03/01 06:52:02| Making directories in /var/spool/squid3/00
2011/03/01 06:52:02| Making directories in /var/spool/squid3/01
2011/03/01 06:52:02| Making directories in /var/spool/squid3/02
2011/03/01 06:52:02| Making directories in /var/spool/squid3/03
2011/03/01 06:52:02| Making directories in /var/spool/squid3/04
2011/03/01 06:52:02| Making directories in /var/spool/squid3/05
2011/03/01 06:52:02| Making directories in /var/spool/squid3/06
2011/03/01 06:52:02| Making directories in /var/spool/squid3/07
2011/03/01 06:52:02| Making directories in /var/spool/squid3/08
2011/03/01 06:52:02| Making directories in /var/spool/squid3/09
2011/03/01 06:52:02| Making directories in /var/spool/squid3/0A
2011/03/01 06:52:02| Making directories in /var/spool/squid3/0B
2011/03/01 06:52:02| Making directories in /var/spool/squid3/0C
2011/03/01 06:52:02| Making directories in /var/spool/squid3/0D
2011/03/01 06:52:02| Making directories in /var/spool/squid3/0E
2011/03/01 06:52:03| Making directories in /var/spool/squid3/0F

# pwd
/var/spool/squid3

# ls -al
total 72
drwxr-xr-x  18 proxy proxy 4096 Mar  1 06:52 .
drwxr-xr-x   5 root  root  4096 Mar  1 06:41 ..
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 00
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 01
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 02
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 03
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 04
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 05
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 06
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 07
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 08
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 09
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 0A
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 0B
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 0C
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 0D
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 0E
drwxr-x--- 258 proxy proxy 4096 Mar  1 06:52 0F

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

Title:
  Failure to create swap directories

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


[Bug 722621] Re: Sync mailman 1:2.1.14-1 (main) from Debian unstable (main)

2011-02-21 Thread Bob Tanner
As a remotely exploitable security issue I hope the Importance of this
issue is greater then Wishlist!

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

Title:
  Sync mailman 1:2.1.14-1 (main) from Debian unstable (main)

-- 
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 722621] Re: Sync mailman 1:2.1.14-1 (main) from Debian unstable (main)

2011-02-21 Thread Bob Tanner
As a remotely exploitable security issue I hope the Importance of this
issue is greater then Wishlist!

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

Title:
  Sync mailman 1:2.1.14-1 (main) from Debian unstable (main)

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


[Bug 719569] [NEW] follow_x_forwarded_for unrecognized option

2011-02-15 Thread Bob Tanner
Public bug reported:

Binary package hint: squid3

Description:Ubuntu 10.04.2 LTS
Release:10.04

squid3:
  Installed: 3.0.STABLE19-1
  Candidate: 3.0.STABLE19-1
  Version table:
 *** 3.0.STABLE19-1 0
500 http://us.archive.ubuntu.com/ubuntu/ lucid/universe Packages
100 /var/lib/dpkg/status

Upgraded from squid-2.x to squid-3 and now I get the follow error:

cache_cf.cc(346) squid.conf:4795 unrecognized:
'follow_x_forwarded_for'

Looks to be the same bug documented at http://bugs.squid-
cache.org/show_bug.cgi?id=1628 which was closed in 2008!

Looking at squid3-3.0.STABLE19/debian/rules I do see it's build with
--enable-follow-x-forwarded-for  the fix should be in HEAD of the squid
project not sure why this isn't active in the lucid build.

squid3-3.0.STABLE19$ ./configure --help | grep -- --enable-follow 
squid3-3.0.STABLE19$ echo $?
1

Not even a valid build option?

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

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

Title:
  follow_x_forwarded_for unrecognized option

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


[Bug 719569] Re: follow_x_forwarded_for unrecognized option

2011-02-15 Thread Bob Tanner
Fixed ins maverick?

squid3 (3.1.0.13-1) experimental; urgency=low

  * New upstream release
- Fixes Follow-X-Forwarded-For support (Closes: #523943)

Though I'm confused. I plug in 523943 in https://bugs.launchpad.net and
I get a bug report for 'Decibel Audio Player'?

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

Title:
  follow_x_forwarded_for unrecognized option

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


[Bug 664824] [NEW] package alsa-utils 1.0.23-2ubuntu3.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-10-21 Thread Bob Tanner
Public bug reported:

Binary package hint: alsa-utils

I'm using Ubuntu 10.10.  When I tried update my system, alsa-utils
failed to update.  Currently I have alsa-utils version
1.0.23-2ubuntu3.3.

This was the output from the update manager:

installArchives() failed: (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 379571 files and directories currently installed.)

Preparing to replace alsa-utils 1.0.23-2ubuntu3.2 (using .../alsa-
utils_1.0.23-2ubuntu3.3_i386.deb) ...

Unpacking replacement alsa-utils ...

Preparing to replace python-cupshelpers 1.2.3+20100723-0ubuntu8 (using
.../python-cupshelpers_1.2.3+20100723-0ubuntu8.1_all.deb) ...

Unpacking replacement python-cupshelpers ...

Preparing to replace python-papyon 0.5.1-0ubuntu1 (using .../python-
papyon_0.5.1-0ubuntu2_all.deb) ...

Unpacking replacement python-papyon ...

Preparing to replace system-config-printer-common
1.2.3+20100723-0ubuntu8 (using .../system-config-printer-
common_1.2.3+20100723-0ubuntu8.1_all.deb) ...

Unpacking replacement system-config-printer-common ...

Preparing to replace system-config-printer-gnome 1.2.3+20100723-0ubuntu8
(using .../system-config-printer-
gnome_1.2.3+20100723-0ubuntu8.1_all.deb) ...

Unpacking replacement system-config-printer-gnome ...

Preparing to replace system-config-printer-udev 1.2.3+20100723-0ubuntu8
(using .../system-config-printer-
udev_1.2.3+20100723-0ubuntu8.1_i386.deb) ...

Unpacking replacement system-config-printer-udev ...

Preparing to replace tomboy 1.4.0-0ubuntu2 (using
.../tomboy_1.4.0-0ubuntu3_i386.deb) ...

Unpacking replacement tomboy ...

Processing triggers for man-db ...

Processing triggers for ureadahead ...

ureadahead will be reprofiled on next reboot

Processing triggers for python-support ...

Processing triggers for python-gmenu ...

Rebuilding /usr/share/applications/desktop.en_AU.UTF8.cache...

Processing triggers for desktop-file-utils ...

Processing triggers for hicolor-icon-theme ...

Processing triggers for shared-mime-info ...

Unknown media type in type 'all/all'


Unknown media type in type 'all/allfiles'


Unknown media type in type 'uri/mms'


Unknown media type in type 'uri/mmst'


Unknown media type in type 'uri/mmsu'


Unknown media type in type 'uri/pnm'


Unknown media type in type 'uri/rtspt'


Unknown media type in type 'uri/rtspu'


Unknown media type in type 'fonts/package'


Unknown media type in type 'interface/x-winamp-skin'


Processing triggers for menu ...

Processing triggers for gconf2 ...

Processing triggers for python-support ...

Setting up alsa-utils (1.0.23-2ubuntu3.3) ...

dpkg: error processing alsa-utils (--configure):

 subprocess installed post-installation script returned error exit
status 1

Setting up python-cupshelpers (1.2.3+20100723-0ubuntu8.1) ...

Setting up python-papyon (0.5.1-0ubuntu2) ...

Setting up system-config-printer-common (1.2.3+20100723-0ubuntu8.1) ...

Setting up system-config-printer-gnome (1.2.3+20100723-0ubuntu8.1) ...

Setting up system-config-printer-udev (1.2.3+20100723-0ubuntu8.1) ...

Setting up tomboy (1.4.0-0ubuntu3) ...

Processing triggers for python-support ...

Processing triggers for menu ...

Errors were encountered while processing:

 alsa-utils

Setting up alsa-utils (1.0.23-2ubuntu3.3) ...

dpkg: error processing alsa-utils (--configure):

 subprocess installed post-installation script returned error exit
status 1

ProblemType: Package
DistroRelease: Ubuntu 10.10
Package: alsa-utils 1.0.23-2ubuntu3.3
ProcVersionSignature: Ubuntu 2.6.35-22.35-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Fri Oct 22 07:32:14 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
SourcePackage: alsa-utils
Title: package alsa-utils 1.0.23-2ubuntu3.3 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1

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


** Tags: apport-package i386 maverick

-- 
package alsa-utils 1.0.23-2ubuntu3.3 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/664824
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com

[Bug 664824] Re: package alsa-utils 1.0.23-2ubuntu3.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-10-21 Thread Bob Tanner


-- 
package alsa-utils 1.0.23-2ubuntu3.3 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/664824
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 656528] [NEW] rsyslog-mysql requires mysql-server to be installed?

2010-10-07 Thread Bob Tanner
Public bug reported:

Binary package hint: rsyslog

Pristine install of lucid patched and up to date.

Installing rsyslog-mysql wants to install all of mysql-server even
though the mysql-server meta package is only a recommended package.

http://packages.ubuntu.com/lucid/rsyslog-mysql

This requires(?) that every rsyslog server also be the mysql server?
Seem really inflexible.

# apt-get install rsyslog-mysql
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following extra packages will be installed:
  dbconfig-common libdbd-mysql-perl libdbi-perl libhtml-template-perl
  libnet-daemon-perl libplrpc-perl mysql-client-5.1 mysql-client-core-5.1
  mysql-server mysql-server-5.1 mysql-server-core-5.1
Suggested packages:
  virtual-mysql-client mysql-client postgresql-client dbishell
  libipc-sharedcache-perl tinyca
The following NEW packages will be installed:
  dbconfig-common libdbd-mysql-perl libdbi-perl libhtml-template-perl
  libnet-daemon-perl libplrpc-perl mysql-client-5.1 mysql-client-core-5.1
  mysql-server mysql-server-5.1 mysql-server-core-5.1 rsyslog-mysql

# apt-cache showpkg rsyslog-mysql
Package: rsyslog-mysql
Versions: 
4.2.0-2ubuntu8 
(/var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_lucid_universe_binary-amd64_Packages)
 Description Language: 
 File: 
/var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_lucid_universe_binary-amd64_Packages
  MD5: 29be7857de256cc7e3546c2c5296e26a


Reverse Depends: 
  rsyslog,rsyslog-mysql
Dependencies: 
4.2.0-2ubuntu8 - libc6 (2 2.4) libmysqlclient16 (2 5.1.21-1) debconf (18 0.5) 
debconf-2.0 (0 (null)) rsyslog (5 4.2.0-2ubuntu8) dbconfig-common (0 (null)) 
ucf (0 (null)) mysql-server (0 (null))

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

-- 
rsyslog-mysql requires mysql-server to be installed?
https://bugs.launchpad.net/bugs/656528
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 656528] Re: rsyslog-mysql requires mysql-server to be installed?

2010-10-07 Thread Bob Tanner
Download the .deb, ar xv + tar -xvzf the data.tar.gz and ldd on the
ommysql.so shows all the libraries resolved without mysql-server
installed.

$ ldd ommysql.so 
linux-vdso.so.1 =  (0x7fff27bff000)
libmysqlclient.so.16 = /usr/lib/libmysqlclient.so.16 
(0x7f60d0512000)
libc.so.6 = /lib/libc.so.6 (0x7f60d018b000)
libpthread.so.0 = /lib/libpthread.so.0 (0x7f60cff6d000)
libcrypt.so.1 = /lib/libcrypt.so.1 (0x7f60cfd34000)
libnsl.so.1 = /lib/libnsl.so.1 (0x7f60cfb1a000)
libm.so.6 = /lib/libm.so.6 (0x7f60cf896000)
libz.so.1 = /lib/libz.so.1 (0x7f60cf67f000)
/lib64/ld-linux-x86-64.so.2 (0x7f60d0b29000)

-- 
rsyslog-mysql requires mysql-server to be installed?
https://bugs.launchpad.net/bugs/656528
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 656528] Re: rsyslog-mysql requires mysql-server to be installed?

2010-10-07 Thread Bob Tanner
# apt-get --no-install-recommends install rsyslog-mysql

Reading package lists... Done
Building dependency tree   
Reading state information... Done
Recommended packages:
  mysql-server
The following NEW packages will be installed:
  rsyslog-mysql
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 90.1kB of archives.
After this operation, 184kB of additional disk space will be used.
Get:1 http://us.archive.ubuntu.com/ubuntu/ lucid/universe rsyslog-mysql 
4.2.0-2ubuntu8 [90.1kB]
Fetched 90.1kB in 1s (90.0kB/s)
Selecting previously deselected package rsyslog-mysql.
(Reading database ... 74283 files and directories currently installed.)
Unpacking rsyslog-mysql (from .../rsyslog-mysql_4.2.0-2ubuntu8_amd64.deb) ...
Setting up rsyslog-mysql (4.2.0-2ubuntu8) ...
dbconfig-common: writing config to /etc/dbconfig-common/rsyslog-mysql.conf

Creating config file /etc/dbconfig-common/rsyslog-mysql.conf with new
version

Creating config file /etc/rsyslog.d/mysql.conf with new version


Post-install package dialog pops up:

The rsyslog-mysql package must have a database installed and configured
before it can be used.  This can be optionally handled with  dbconfig-
common.

Selecting No  and I've got it installed.

-- 
rsyslog-mysql requires mysql-server to be installed?
https://bugs.launchpad.net/bugs/656528
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 541681] [NEW] 3.4.x (x 6) does not allow printing under 64 bit clients

2010-03-18 Thread Bob Tanner
Public bug reported:

Binary package hint: samba

http://lists.samba.org/archive/samba/2010-March/154072.html says
...3.4.X does not allow printing under 64 bit clients...

later on you see upstream fix this bug.

http://lists.samba.org/archive/samba/2010-March/154116.html says ...
Fix printing with 64 bit clients (bug #6888). ...

Official release notes,
http://www.samba.org/samba/history/samba-3.4.6.html

Official upstream bug report,
https://bugzilla.samba.org/show_bug.cgi?id=6888

Official upstream patch,
https://bugzilla.samba.org/attachment.cgi?id=5397

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

-- 
3.4.x (x  6)  does not allow printing under 64 bit clients
https://bugs.launchpad.net/bugs/541681
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 541681] [NEW] 3.4.x (x 6) does not allow printing under 64 bit clients

2010-03-18 Thread Bob Tanner
Public bug reported:

Binary package hint: samba

http://lists.samba.org/archive/samba/2010-March/154072.html says
...3.4.X does not allow printing under 64 bit clients...

later on you see upstream fix this bug.

http://lists.samba.org/archive/samba/2010-March/154116.html says ...
Fix printing with 64 bit clients (bug #6888). ...

Official release notes,
http://www.samba.org/samba/history/samba-3.4.6.html

Official upstream bug report,
https://bugzilla.samba.org/show_bug.cgi?id=6888

Official upstream patch,
https://bugzilla.samba.org/attachment.cgi?id=5397

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

-- 
3.4.x (x  6)  does not allow printing under 64 bit clients
https://bugs.launchpad.net/bugs/541681
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 385567] Re: 8.04 security update breaks configuration

2009-07-07 Thread Bob Tanner
Security team really dropped the ball here.

The whole Download Manager is missing from the previous configuration.

There should have been a big warning on upgrading this package to
identify the problems with the configuration files.

I agree with the original poster, security fixes should not introduce
new functionality.

-- 
8.04 security update breaks configuration
https://bugs.launchpad.net/bugs/385567
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 385567] Re: 8.04 security update breaks configuration

2009-07-07 Thread Bob Tanner
How about a .config and .template something like this:

.template

Template: dg/bigwarning
Description: WARNING: Incompatible configuration changes:
 The upgrade from DG 2.8.0 to DG 2.9 has several configuration file changes 
that are not compatible with DG 2.8

.config
db_get dg/bigwarning

Or something like that.

-- 
8.04 security update breaks configuration
https://bugs.launchpad.net/bugs/385567
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 354036] Re: ErrorFromSmartServer - AbsentContentFactory object has no attribute 'get_bytes_as' exception while pulling from Launchpad

2009-04-28 Thread Bob Tanner
** Changed in: bzr/1.13
   Status: Fix Committed = Fix Released

-- 
ErrorFromSmartServer - AbsentContentFactory object has no attribute 
'get_bytes_as' exception while pulling from Launchpad
https://bugs.launchpad.net/bugs/354036
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 354036] Re: ErrorFromSmartServer - AbsentContentFactory object has no attribute 'get_bytes_as' exception while pulling from Launchpad

2009-04-27 Thread Bob Tanner
** Changed in: bzr/1.13
   Status: Confirmed = Fix Committed

** Changed in: bzr/1.13
 Assignee: (unassigned) = Bob Tanner (tanner)

-- 
ErrorFromSmartServer - AbsentContentFactory object has no attribute 
'get_bytes_as' exception while pulling from Launchpad
https://bugs.launchpad.net/bugs/354036
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 354036] Re: ErrorFromSmartServer - AbsentContentFactory object has no attribute 'get_bytes_as' exception while pulling from Launchpad

2009-04-22 Thread Bob Tanner
Merged into 1.13.2, I cannot change the bug task Status, so posting
here. See http://permalink.gmane.org/gmane.comp.version-control.bazaar-
ng.general/57030 for my question regarding changing Status.

-- 
ErrorFromSmartServer - AbsentContentFactory object has no attribute 
'get_bytes_as' exception while pulling from Launchpad
https://bugs.launchpad.net/bugs/354036
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 354036] Re: ErrorFromSmartServer - AbsentContentFactory object has no attribute 'get_bytes_as' exception while pulling from Launchpad

2009-04-18 Thread Bob Tanner
Merged into 1.14rc2. Thanks.

-- 
ErrorFromSmartServer - AbsentContentFactory object has no attribute 
'get_bytes_as' exception while pulling from Launchpad
https://bugs.launchpad.net/bugs/354036
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 346593] Re: deprecation warning in bzrlib/filters/__init__.py

2009-03-22 Thread Bob Tanner
*** This bug is a duplicate of bug 269429 ***
https://bugs.launchpad.net/bugs/269429

** This bug has been marked a duplicate of bug 269429
   pycrypto-2.0.1 uses md5  sha1 modules which will be deprecated in 2.6/3.0

-- 
deprecation warning in bzrlib/filters/__init__.py
https://bugs.launchpad.net/bugs/346593
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu (via bug 269429).

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


[Bug 342170] Re: Deprecation warning for md5 and sha modules with Python 2.6

2009-03-16 Thread Bob Tanner
*** This bug is a duplicate of bug 269429 ***
https://bugs.launchpad.net/bugs/269429

** This bug has been marked a duplicate of bug 269429
   pycrypto-2.0.1 uses md5  sha1 modules which will be deprecated in 2.6/3.0

-- 
Deprecation warning for md5 and sha modules with Python 2.6
https://bugs.launchpad.net/bugs/342170
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu (via bug 269429).

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


[Bug 269429] Re: pycrypto-2.0.1 uses md5 sha1 modules which will be deprecated in 2.6/3.0

2009-03-16 Thread Bob Tanner
** Also affects: python-crypto (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: bzr
   Importance: Undecided
   Status: New

-- 
pycrypto-2.0.1 uses md5  sha1 modules which will be deprecated in 2.6/3.0
https://bugs.launchpad.net/bugs/269429
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 269429] Re: pycrypto-2.0.1 uses md5 sha1 modules which will be deprecated in 2.6/3.0

2009-03-16 Thread Bob Tanner
** Changed in: bzr
 Assignee: (unassigned) = Bob Tanner (tanner)
   Status: New = Fix Committed
   Target: None = 1.14rc1

-- 
pycrypto-2.0.1 uses md5  sha1 modules which will be deprecated in 2.6/3.0
https://bugs.launchpad.net/bugs/269429
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 269429] Re: pycrypto-2.0.1 uses md5 sha1 modules which will be deprecated in 2.6/3.0

2009-03-16 Thread Bob Tanner
Please see https://bugs.launchpad.net/bzr/+bug/342170 there's a bzr
branch with the above upstream patches applied that should work for
Ubuntu people. Please let me know what else I can do to help.

-- 
pycrypto-2.0.1 uses md5  sha1 modules which will be deprecated in 2.6/3.0
https://bugs.launchpad.net/bugs/269429
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 269429] Re: pycrypto-2.0.1 uses md5 sha1 modules which will be deprecated in 2.6/3.0

2009-03-16 Thread Bob Tanner
** Changed in: python-crypto (Ubuntu)
 Assignee: (unassigned) = Ubuntu Core Development Team (ubuntu-core-dev)

-- 
pycrypto-2.0.1 uses md5  sha1 modules which will be deprecated in 2.6/3.0
https://bugs.launchpad.net/bugs/269429
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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