diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-07 11:49:58 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-07 11:49:58 +0000 |
commit | 99a3826e5565e26daf44b1139b6732be93a1b560 (patch) | |
tree | 532b53ee80b62a87f49c977cfd2f6b2d305cbc57 /move/move.pm | |
parent | 9a581133ffdd978bd254053dcc882aa6a5f2797a (diff) | |
download | drakx-99a3826e5565e26daf44b1139b6732be93a1b560.tar drakx-99a3826e5565e26daf44b1139b6732be93a1b560.tar.gz drakx-99a3826e5565e26daf44b1139b6732be93a1b560.tar.bz2 drakx-99a3826e5565e26daf44b1139b6732be93a1b560.tar.xz drakx-99a3826e5565e26daf44b1139b6732be93a1b560.zip |
Oops... I did it again!
Diffstat (limited to 'move/move.pm')
-rw-r--r-- | move/move.pm | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/move/move.pm b/move/move.pm index 62b0b8396..8354ebbe9 100644 --- a/move/move.pm +++ b/move/move.pm @@ -29,15 +29,7 @@ sub init { $::testing and goto drakx_stuff; #- rw things - mkdir "/$_" foreach qw(home mnt root root/tmp var); - - system("cp -a /image/etc /"); - symlinkf "/proc/mounts", "/etc/mtab"; - system("find /etc -type f > /tmp/filelist"); - touch '/dummy'; - m|^/var| && !-d $_ and mkdir_p $_ foreach chomp_(cat_('/image/move/directories-to-create')); - sleep 2; - goto meuh; + mkdir "/$_" foreach qw(home mnt root root/tmp etc var); mkdir "/etc/$_" foreach qw(X11); touch '/etc/modules.conf'; @@ -68,7 +60,6 @@ sub init { -d $_ or mkdir_p $_ foreach chomp_(cat_('/image/move/directories-to-create')); - meuh: #- free up stage1 memory fs::umount($_) foreach qw(/stage1/proc /stage1); |