diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-06-05 17:48:26 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-06-05 17:48:26 +0000 |
commit | 859d4e8ee4be445412459381f14c94594aa0fe93 (patch) | |
tree | 60c1a00083c1f8050207ecd6672e9953278bf747 | |
parent | e67f28682224ffc3c50d82299519a86771d6fe05 (diff) | |
download | drakx-backup-do-not-use-859d4e8ee4be445412459381f14c94594aa0fe93.tar drakx-backup-do-not-use-859d4e8ee4be445412459381f14c94594aa0fe93.tar.gz drakx-backup-do-not-use-859d4e8ee4be445412459381f14c94594aa0fe93.tar.bz2 drakx-backup-do-not-use-859d4e8ee4be445412459381f14c94594aa0fe93.tar.xz drakx-backup-do-not-use-859d4e8ee4be445412459381f14c94594aa0fe93.zip |
(start_udev) do not start udev twice in debug mode
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/install2.pm | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 82e9ae5d1..f0484d5fe 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - debug mode: + o do not start udev twice o just start the installer if one quits the shell Version 14.26 - 5 June 2012 diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm index 5df051231..589287dc6 100644 --- a/perl-install/install/install2.pm +++ b/perl-install/install/install2.pm @@ -292,6 +292,8 @@ sub exitInstall { #-###################################################################################### sub start_udev() { + return if -e "/dev/zero"; + # Ensure /run is mounted mkdir("/run", 0755); run_program::run("mount -t tmpfs -o mode=0755,nosuid,nodev tmpfs /run"); |