diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-11-06 22:56:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-11-06 22:56:50 +0000 |
commit | 3684929676de81c6eabd9d5333f557834efba33f (patch) | |
tree | 89c287af8b4b876acec1e819b95649f0d4e0b90d /move/tree/mdk_behind_totem | |
parent | b64692ddd130c43f3b0ba9665bb3945bc46ff485 (diff) | |
download | drakx-3684929676de81c6eabd9d5333f557834efba33f.tar drakx-3684929676de81c6eabd9d5333f557834efba33f.tar.gz drakx-3684929676de81c6eabd9d5333f557834efba33f.tar.bz2 drakx-3684929676de81c6eabd9d5333f557834efba33f.tar.xz drakx-3684929676de81c6eabd9d5333f557834efba33f.zip |
- various fixes (including adding /bin/sleep to totem.list and using it)
- mdk_totem is now written in perl
Diffstat (limited to 'move/tree/mdk_behind_totem')
-rwxr-xr-x | move/tree/mdk_behind_totem | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/move/tree/mdk_behind_totem b/move/tree/mdk_behind_totem index 11ef2ae22..f8f198cf2 100755 --- a/move/tree/mdk_behind_totem +++ b/move/tree/mdk_behind_totem @@ -33,7 +33,7 @@ if [ -z "$totem_pid" -o -z "$ok" ]; then exit 1 fi -exec 2> /tmp/mdk_behind_totem.log +exec &> /tmp/mdk_behind_totem.log trap 'umount_cd' USR1 @@ -52,10 +52,10 @@ umount_cd() { mount_cd() { echo mount_cd - /image_always/sbin/losetup -r -e gz /image_raw/live_tree.clp /dev/$main_loop + /image_always/sbin/losetup -r -e gz /dev/$main_loop /image_raw/live_tree.clp /image_always/bin/mount /dev/$main_loop /image - losetup -r -e gz /image_raw/live_tree_boot.clp /dev/$boot_loop + losetup -r -e gz /dev/$boot_loop /image_raw/live_tree_boot.clp mount /dev/$boot_loop /image_boot ln -sf /image/lib / @@ -65,7 +65,7 @@ mount_cd() { while [ -e "/proc/$totem_pid" ]; do echo "waiting..." - sleep 1 + /image_totem/bin/sleep 1 done mount_cd |