From 1be510f9529cb082f802408b472a77d074b394c0 Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Sun, 14 Apr 2013 13:46:12 +0000 Subject: Add zarb MLs html archives --- zarb-ml/mageia-dev/2012-April/015069.html | 123 ++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 zarb-ml/mageia-dev/2012-April/015069.html (limited to 'zarb-ml/mageia-dev/2012-April/015069.html') diff --git a/zarb-ml/mageia-dev/2012-April/015069.html b/zarb-ml/mageia-dev/2012-April/015069.html new file mode 100644 index 000000000..6f44801a6 --- /dev/null +++ b/zarb-ml/mageia-dev/2012-April/015069.html @@ -0,0 +1,123 @@ + + + + [Mageia-dev] [soft-commits] [4332] - fix rebooting on autoinstall + + + + + + + + + +

[Mageia-dev] [soft-commits] [4332] - fix rebooting on autoinstall

+ Thierry Vignaud + thierry.vignaud at gmail.com +
+ Mon Apr 30 09:56:15 CEST 2012 +

+
+ +
On 30 April 2012 09:54,  <root at mageia.org> wrote:
+> Modified: drakx/trunk/perl-install/NEWS
+> ===================================================================
+> --- drakx/trunk/perl-install/NEWS	2012-04-30 07:49:17 UTC (rev 4331)
+> +++ drakx/trunk/perl-install/NEWS	2012-04-30 07:54:17 UTC (rev 4332)
+> @@ -1,3 +1,6 @@
+> +- fix rebooting on autoinstall by using a "wider" regexp (otherwise udevd
+> was
+> +  not found by fuzzy_pidofs) and gives some time to udevd process to
+> disappear.
+> +  Also, don't try to unmount /dev as it's still used by other processes.
+>  - pkgs.pm, http.pm: Allow to set urpm curl options in order to be able
+>    to make curl quiet when running an autoinstall in text mode. This can
+>    be set throught the new option "curl_options" in the auto_inst file.
+>
+> Modified: drakx/trunk/perl-install/install/install2.pm
+> ===================================================================
+> --- drakx/trunk/perl-install/install/install2.pm	2012-04-30 07:49:17 UTC
+> (rev 4331)
+> +++ drakx/trunk/perl-install/install/install2.pm	2012-04-30 07:54:17 UTC
+> (rev 4332)
+> @@ -311,9 +311,10 @@
+>  }
+>
+>  sub stop_udev() {
+> -    kill 15, fuzzy_pidofs('^udevd\b');
+> +    kill 15, fuzzy_pidofs('udevd');
+> +    sleep(2);
+>      require fs::mount;
+> -    fs::mount::umount($_) foreach '/dev/pts', '/dev/shm', '/run', '/dev';
+> +    fs::mount::umount($_) foreach '/dev/pts', '/dev/shm', '/run';
+>  }
+
+Then we could keep /dev/pts & /dev/shm mounted.
+Maybe even not try at all to umount anything.
+After all that doesn't matter much...
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ +
+More information about the Mageia-dev +mailing list
+ -- cgit v1.2.1