diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-11-04 13:07:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-11-04 13:07:51 +0000 |
commit | f9c3d7fa037c1c262b8964800b82fcb78f68d5ca (patch) | |
tree | 51257d8a2d24fa8a8627e225989734ec93cc3d29 /move | |
parent | 23ad4c54181858aa61c954b057926db748e4b5ef (diff) | |
download | drakx-f9c3d7fa037c1c262b8964800b82fcb78f68d5ca.tar drakx-f9c3d7fa037c1c262b8964800b82fcb78f68d5ca.tar.gz drakx-f9c3d7fa037c1c262b8964800b82fcb78f68d5ca.tar.bz2 drakx-f9c3d7fa037c1c262b8964800b82fcb78f68d5ca.tar.xz drakx-f9c3d7fa037c1c262b8964800b82fcb78f68d5ca.zip |
don't mount totem clp if option "live" is given on cmdline
Diffstat (limited to 'move')
-rw-r--r-- | move/move.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/move/move.pm b/move/move.pm index dcaf1488d..8f9abd7f6 100644 --- a/move/move.pm +++ b/move/move.pm @@ -88,7 +88,7 @@ sub install2::startMove { install_steps::addUser($o); #- need be done early because it provide some libs such as libssl which is needed for automatic printer config - lomount_clp('totem') if ! -x '/usr/bin/totem'; + lomount_clp('totem') if ! -x '/usr/bin/totem' && cat_('/proc/cmdline') !~ /\blive\b/; #- automatic printer, timezone, network configs require install_steps_interactive; |