Interrogation sur une alerte

Depuis 2 ou 3 jours, je reçois un mail de ma machine (anacron), qui dit en gros :

/etc/cron.daily/dpkg: cp: cannot stat '/var/lib/dpkg/arch': No such file or directory

[code]#!/bin/sh

dbdir=/var/lib/dpkg

Backup the 7 last versions of dpkg databases containing user data.

if cd /var/backups ; then
# We backup all relevant database files if any has changed, so that
# the rotation number always contains an internally consistent set.
dbchanged=no
dbfiles="arch status diversions statoverride"
for db in $dbfiles ; do
if ! cmp -s dpkg.${db}.0 $dbdir/$db ; then
dbchanged=yes
break;
fi
done
if [ “$dbchanged” = “yes” ] ; then
for db in $dbfiles ; do
cp -p $dbdir/$db dpkg.$db
savelog -c 7 dpkg.$db >/dev/null
done
fi

# The alternatives database is independent from the dpkg database.
if ! test -e alternatives.tar.0 ||
   ! tar -df alternatives.tar.0 -C $dbdir alternatives >/dev/null ; then
    tar -cf alternatives.tar -C $dbdir alternatives
    savelog -c 7 -J alternatives.tar >/dev/null
fi

fi
[/code]

en effet, pas de fichier “arch” dans /var/lib/dpkg/

Que devrais-je faire pour règler cette affaire ou supprimer l’alerte si l’importance est secondaire ?
.

Ça ressemble à ça : bugs.debian.org/cgi-bin/bugrepo … bug=745651

Donc, il faudrait modifier le script en insérant la ligne :

Ce qui donnerait :

[code]#!/bin/sh

dbdir=/var/lib/dpkg

Backup the 7 last versions of dpkg databases containing user data.

if cd /var/backups ; then
# We backup all relevant database files if any has changed, so that
# the rotation number always contains an internally consistent set.
dbchanged=no
dbfiles="arch status diversions statoverride"
for db in $dbfiles ; do
test -f $dbdir/$db || continue
if ! cmp -s dpkg.${db}.0 $dbdir/$db ; then
dbchanged=yes
break;
fi
done
if [ “$dbchanged” = “yes” ] ; then
for db in $dbfiles ; do
cp -p $dbdir/$db dpkg.$db
savelog -c 7 dpkg.$db >/dev/null
done
fi

# The alternatives database is independent from the dpkg database.
if ! test -e alternatives.tar.0 ||
   ! tar -df alternatives.tar.0 -C $dbdir alternatives >/dev/null ; then
    tar -cf alternatives.tar -C $dbdir alternatives
    savelog -c 7 -J alternatives.tar >/dev/null
fi

fi
[/code]

c’est apparemment résolu - http://anonscm.debian.org/gitweb/?p=dpkg/dpkg.git;a=commitdiff;h=08a4313

En effet, depuis deux jours, je n’ai plus d’alerte.
Merci à vous deux.