3 votes

Erreur de mise à jour de mailman

J'ai reçu ce message d'erreur aujourd'hui en faisant apt-get upgrade

Setting up mailman (1:2.1.16-2ubuntu0.1) ...
Looking for enabled languages (this may take some time) ... done.
Removing unmodified files from /etc/mailman/eu  done.
Directory /etc/mailman/eu not empty, not removed.
Removing unmodified files from /etc/mailman/no  done.
Directory /etc/mailman/no not empty, not removed.
Removing unmodified files from /etc/mailman/he  done.
Directory /etc/mailman/he not empty, not removed.
Removing unmodified files from /etc/mailman/tr  done.
Directory /etc/mailman/tr not empty, not removed.
Removing unmodified files from /etc/mailman/pt_BR  done.
Directory /etc/mailman/pt_BR not empty, not removed.
Removing unmodified files from /etc/mailman/lt  done.
Directory /etc/mailman/lt not empty, not removed.
Removing unmodified files from /etc/mailman/sk  done.
Directory /etc/mailman/sk not empty, not removed.
Removing unmodified files from /etc/mailman/nl  done.
Directory /etc/mailman/nl not empty, not removed.
Removing unmodified files from /etc/mailman/et  done.
Directory /etc/mailman/et not empty, not removed.
Removing unmodified files from /etc/mailman/hr  done.
Directory /etc/mailman/hr not empty, not removed.
Removing unmodified files from /etc/mailman/de  done.
Directory /etc/mailman/de not empty, not removed.
Removing unmodified files from /etc/mailman/it  done.
Directory /etc/mailman/it not empty, not removed.
Removing unmodified files from /etc/mailman/zh_CN  done.
Directory /etc/mailman/zh_CN not empty, not removed.
Removing unmodified files from /etc/mailman/fr  done.
Directory /etc/mailman/fr not empty, not removed.
Removing unmodified files from /etc/mailman/sr  done.
Directory /etc/mailman/sr not empty, not removed.
Removing unmodified files from /etc/mailman/zh_TW  done.
Directory /etc/mailman/zh_TW not empty, not removed.
Removing unmodified files from /etc/mailman/ru  done.
Directory /etc/mailman/ru not empty, not removed.
Removing unmodified files from /etc/mailman/ja  done.
Directory /etc/mailman/ja not empty, not removed.
Removing unmodified files from /etc/mailman/cs  done.
Directory /etc/mailman/cs not empty, not removed.
Removing unmodified files from /etc/mailman/fi  done.
Directory /etc/mailman/fi not empty, not removed.
Removing unmodified files from /etc/mailman/el  done.
Directory /etc/mailman/el not empty, not removed.
Removing unmodified files from /etc/mailman/ca  done.
Directory /etc/mailman/ca not empty, not removed.
Removing unmodified files from /etc/mailman/ar  done.
Directory /etc/mailman/ar not empty, not removed.
Removing unmodified files from /etc/mailman/sl  done.
Directory /etc/mailman/sl not empty, not removed.
Removing unmodified files from /etc/mailman/pt  done.
Directory /etc/mailman/pt not empty, not removed.
Removing unmodified files from /etc/mailman/hu  done.
Directory /etc/mailman/hu not empty, not removed.
Removing unmodified files from /etc/mailman/es  done.
Directory /etc/mailman/es not empty, not removed.
Removing unmodified files from /etc/mailman/vi  done.
Directory /etc/mailman/vi not empty, not removed.
Removing unmodified files from /etc/mailman/ko  done.
Directory /etc/mailman/ko not empty, not removed.
Removing unmodified files from /etc/mailman/ro  done.
Directory /etc/mailman/ro not empty, not removed.
Removing unmodified files from /etc/mailman/gl  done.
Directory /etc/mailman/gl not empty, not removed.
Removing unmodified files from /etc/mailman/fa  done.
Directory /etc/mailman/fa not empty, not removed.
Removing unmodified files from /etc/mailman/da  done.
Directory /etc/mailman/da not empty, not removed.
Removing unmodified files from /etc/mailman/pl  done.
Directory /etc/mailman/pl not empty, not removed.
Removing unmodified files from /etc/mailman/ia  done.
Directory /etc/mailman/ia not empty, not removed.
Removing unmodified files from /etc/mailman/uk  done.
Directory /etc/mailman/uk not empty, not removed.
Removing unmodified files from /etc/mailman/sv  done.
Directory /etc/mailman/sv not empty, not removed.
Removing unmodified files from /etc/mailman/ast  done.
Directory /etc/mailman/ast not empty, not removed.
Installing site language en ............................................ done.
Downgrade detected, from version 0x20112f1 to version 0x20110f0
This is probably not safe.
Exiting.
dpkg: error processing package mailman (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 mailman
E: Sub-process /usr/bin/dpkg returned an error code (1)

J'utilise Ubuntu 14.04.3. Ma question est la suivante :

Quelle en serait la cause ?

Mise à jour : Par le commentaire de @Ravan ci-dessous, j'ai pu résoudre le problème en

cd /var/lib/dpkg/info/
rm mailman*
apt-get clean all
apt-get update
apt-get upgrade

Bien que les choses aillent mieux maintenant, je n'ai toujours pas de réponse à la question de savoir ce qui a pu causer cela.

3voto

A.B. Points 84870

Après avoir supprimé tous les fichiers dans /var/lib/dpkg/info/ il est difficile de dire quel était le problème.

Par conséquent, ne supprimez pas quelque chose, si vous avez besoin d'une explication pour votre problème. Ou lisez ce avant de faire quelque chose.

L'erreur s'est produite dans le fichier /var/lib/dpkg/info/mailman.postinst Voici le message d'erreur correspondant :

sous-processus installé post-installation script retourné erreur exit état 1

Et c'est le code problématique ou l'endroit à partir duquel on pourrait chercher l'erreur.

for lang in ${site_languages}; do
  printf "Installing site language ${lang} " >&2
  mkdir -p ${mm_etc}/${lang}
  for file in $(ls ${mm_dist}/${lang}); do
    printf . >&2
    langfile=${lang}/${file}
    ucf --debconf-ok --three-way ${mm_dist}/${langfile} ${mm_etc}/${langfile} 2>/dev/null
  done
  printf " done.\n" >&2
done

Il est malheureusement impossible d'en savoir plus.

SistemesEz.com

SystemesEZ est une communauté de sysadmins où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres sysadmins, poser vos propres questions ou résoudre celles des autres.

Powered by:

X