From e12514565659bde6fccc299828eae5a4953f9c5a Mon Sep 17 00:00:00 2001 From: picca Date: Fri, 28 Jul 2017 15:08:22 +0000 Subject: --- doc/forum/host_to_deal_with_dpkg::options.mdwn | 39 ++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 doc/forum/host_to_deal_with_dpkg::options.mdwn (limited to 'doc') diff --git a/doc/forum/host_to_deal_with_dpkg::options.mdwn b/doc/forum/host_to_deal_with_dpkg::options.mdwn new file mode 100644 index 00000000..a6d74986 --- /dev/null +++ b/doc/forum/host_to_deal_with_dpkg::options.mdwn @@ -0,0 +1,39 @@ +Hello + +I try to create a distUpgrade property in order to migrate one of my computer from jessie -> stretch + +I started wit this + + distUpgrade :: String -> Property DebianLike + distUpgrade p = combineProperties ("apt " ++ p) $ props + & Apt.pendingConfigured + & Apt.runApt ["-y", "--force-yes", "-o", "Dpkg::Options::=\"--force-confnew\"", p] + `assume` MadeChange + +But when I try to use this + + ... + & distUpgrade dist-upgrade + + I get this error message + + Préconfiguration des paquets... + setting xserver-xorg-legacy/xwrapper/allowed_users from configuration file + dpkg: erreur: requiert une option d'action + + Utilisez « dpkg --help » pour obtenir de l'aide à propos de l'installation et la désinstallation des paquets [*] ; + Utilisez « apt » ou « aptitude » pour gérer les paquets de m1578 mis à jour, 376 nouvellement installés, 72 à enlever et 0 non mis à jour. + Il est nécessaire de prendre 0 o/1 458 Mo dans les archives. + +I checked that if I run this command on the command line it works + + apt-get -y --force-yes -o Dpkg::Options::="--force-confnew" dist-upgrade + +even If I write this it works + + apt-get -y --force-yes -o Dpkg::Options::=\"--force-confnew\" dist-upgrade + +So it seems to me that there is a problem with the runApt method or I missed something + +thanks + -- cgit v1.2.3