diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-07-20 14:31:44 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-07-20 14:31:44 +0000 |
commit | 16331e73495f66961412d6d949679d4916334681 (patch) | |
tree | 43a61b8104f13b6c7575d58889402a3a5076d9f0 | |
parent | ea205f274ac37ca45253e0241ac16c470b15e8bd (diff) | |
download | drakx-16331e73495f66961412d6d949679d4916334681.tar drakx-16331e73495f66961412d6d949679d4916334681.tar.gz drakx-16331e73495f66961412d6d949679d4916334681.tar.bz2 drakx-16331e73495f66961412d6d949679d4916334681.tar.xz drakx-16331e73495f66961412d6d949679d4916334681.zip |
reapply lang configuration, mostly to rewrite kdeglobals
-rwxr-xr-x | rescue/Flash/scripts/upgrade | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rescue/Flash/scripts/upgrade b/rescue/Flash/scripts/upgrade index 2bf37081c..3999881da 100755 --- a/rescue/Flash/scripts/upgrade +++ b/rescue/Flash/scripts/upgrade @@ -167,6 +167,16 @@ function merge_config_files() { upgrade.merge-users $tmpdir/user/etc $tmpdir/squash/etc + mount -t unionfs -o dirs=$tmpdir/user=rw:$tmpdir/squash=ro \ + none $tmpdir/union + if [ $? -ne 0 ]; then + echo "Error creating union of distrib.sqfs and system.loop" + return 1 + fi + + #- reapply lang configuration, mostly to rewrite kdeglobals + chroot $tmpdir/union perl -I/usr/lib/libDrakX -Mlang -e "lang::write(lang::read())" &>/dev/null + return 0 } |