Comment 1 for bug 909361

Revision history for this message
rpisarev (ruslanpisarev) wrote : Re: cpio crashes when locale="POSIX"

The script in Perl can be replaced by a simple example to bash:
"
#!/bin/bash
backup_tmp="/tmp/backup.cpio"
find /etc/apache2/ -name "httpd.conf" -print | cpio -ocBv > $backup_tmp
find /etc/apache2/ -name "ports.conf" -print | cpio -ocBvA -O $backup_tmp
"

Now checked cpio-2.10-orig, cpio-2.10-1ubuntu2 and cpio-2.11-orig from src. cpio-2.10-orig, cpio-2.10-1ubuntu2 in bash-test and perl-test crash.

cpio-2.11-orig work fine.
Started debugging...