diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2012-10-08 01:47:50 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-10-08 01:52:09 +0200 |
commit | f88add0ab8331203fb858b00a0cf937b08fda842 (patch) | |
tree | b985f692860205ada7319c2aa89e898e7f1dd6a3 | |
parent | 305b388d01a9caf8cee883ad8cb072b5a37e8576 (diff) | |
download | tdebase-f88add0ab8331203fb858b00a0cf937b08fda842.tar.gz tdebase-f88add0ab8331203fb858b00a0cf937b08fda842.zip |
Update migratekde3 script to avoid changes in other user data files
-rw-r--r-- | migratekde3 | 58 |
1 files changed, 53 insertions, 5 deletions
diff --git a/migratekde3 b/migratekde3 index dd288d21e..d0e598cb4 100644 --- a/migratekde3 +++ b/migratekde3 @@ -220,9 +220,21 @@ if [ -n "$KDE3_PROFILE" ] && [ -d "$KDE3_PROFILE" ]; then # Fix config files. # Exclude KMail mail files --- we don't want to touch those files. # I'm using maildir --- do these commands work for mbox too? - echo "Cleaning config files (but not KMail mail files. :-))" 1>&2 + echo "Cleaning config files (but not files with user data, e.g. KMail mail files. :-))" 1>&2 echo "Cleaning, first pass..." 1>&2 - find $HOME/.trinity -path $HOME/.trinity/share/apps/kmail/mail -prune -o -type f -exec sed -i "s|/${KDE3_PROFILE}|/\.trinity|g" {} \; + find $HOME/.trinity \ + -path $HOME/.trinity/share/apps/amarok/albumcovers -prune -o \ + -path $HOME/.trinity/share/apps/basket/baskets -prune -o \ + -path $HOME/.trinity/share/apps/juk/covers -prune -o \ + -path $HOME/.trinity/share/apps/kget/logs -prune -o \ + -path $HOME/.trinity/share/apps/kmail/autosave -prune -o \ + -path $HOME/.trinity/share/apps/kmail/dimap -prune -o \ + -path $HOME/.trinity/share/apps/kmail/imap -prune -o \ + -path $HOME/.trinity/share/apps/kmail/mail -prune -o \ + -path $HOME/.trinity/share/apps/kmail/search -prune -o \ + -path $HOME/.trinity/share/apps/knotes -prune -o \ + -path $HOME/.trinity/share/apps/kopete/logs -prune -o \ + -type f -exec sed -i "s|/${KDE3_PROFILE}|/\.trinity|g" {} \; EXIT_CODE="$?" if [ "$EXIT_CODE" = "0" ]; then echo "Done." 1>&2 @@ -234,9 +246,33 @@ if [ -n "$KDE3_PROFILE" ] && [ -d "$KDE3_PROFILE" ]; then echo "The \$TDEDIR environment variable does not exist. Cannot complete the second pass." 1>&2 else echo "Cleaning, second pass..." 1>&2 - find $HOME/.trinity -path $HOME/.trinity/share/apps/kmail/mail -prune -o -type f -exec sed -i "s|/opt/kde/|${TDEDIR}/|g" {} \; + find $HOME/.trinity \ + -path $HOME/.trinity/share/apps/amarok/albumcovers -prune -o \ + -path $HOME/.trinity/share/apps/basket/baskets -prune -o \ + -path $HOME/.trinity/share/apps/juk/covers -prune -o \ + -path $HOME/.trinity/share/apps/kget/logs -prune -o \ + -path $HOME/.trinity/share/apps/kmail/autosave -prune -o \ + -path $HOME/.trinity/share/apps/kmail/dimap -prune -o \ + -path $HOME/.trinity/share/apps/kmail/imap -prune -o \ + -path $HOME/.trinity/share/apps/kmail/mail -prune -o \ + -path $HOME/.trinity/share/apps/kmail/search -prune -o \ + -path $HOME/.trinity/share/apps/knotes -prune -o \ + -path $HOME/.trinity/share/apps/kopete/logs -prune -o \ + -type f -exec sed -i "s|/opt/kde/|${TDEDIR}/|g" {} \; EXIT_CODE_1="$?" - find $HOME/.trinity -path $HOME/.trinity/share/apps/kmail/mail -prune -o -type f -exec sed -i "s|/opt/kde3/|${TDEDIR}/|g" {} \; + find $HOME/.trinity \ + -path $HOME/.trinity/share/apps/amarok/albumcovers -prune -o \ + -path $HOME/.trinity/share/apps/basket/baskets -prune -o \ + -path $HOME/.trinity/share/apps/juk/covers -prune -o \ + -path $HOME/.trinity/share/apps/kget/logs -prune -o \ + -path $HOME/.trinity/share/apps/kmail/autosave -prune -o \ + -path $HOME/.trinity/share/apps/kmail/dimap -prune -o \ + -path $HOME/.trinity/share/apps/kmail/imap -prune -o \ + -path $HOME/.trinity/share/apps/kmail/mail -prune -o \ + -path $HOME/.trinity/share/apps/kmail/search -prune -o \ + -path $HOME/.trinity/share/apps/knotes -prune -o \ + -path $HOME/.trinity/share/apps/kopete/logs -prune -o \ + -type f -exec sed -i "s|/opt/kde3/|${TDEDIR}/|g" {} \; EXIT_CODE_2="$?" if [ "$EXIT_CODE_1" = "0" ] && [ "$EXIT_CODE_2" = "0" ]; then echo "Done." 1>&2 @@ -250,7 +286,19 @@ if [ -n "$KDE3_PROFILE" ] && [ -d "$KDE3_PROFILE" ]; then if [ -e "$KICKER_FIREFOX" ]; then FIREFOX_PNG_LOCATION="`grep \"Icon=\" \"$KICKER_FIREFOX\"`" fi - find $HOME/.trinity -path $HOME/.trinity/share/apps/kmail/mail -prune -o -type f -exec sed -i "s|/usr/share/|${TDEDIR}/share/|g" {} \; + find $HOME/.trinity \ + -path $HOME/.trinity/share/apps/amarok/albumcovers -prune -o \ + -path $HOME/.trinity/share/apps/basket/baskets -prune -o \ + -path $HOME/.trinity/share/apps/juk/covers -prune -o \ + -path $HOME/.trinity/share/apps/kget/logs -prune -o \ + -path $HOME/.trinity/share/apps/kmail/autosave -prune -o \ + -path $HOME/.trinity/share/apps/kmail/dimap -prune -o \ + -path $HOME/.trinity/share/apps/kmail/imap -prune -o \ + -path $HOME/.trinity/share/apps/kmail/mail -prune -o \ + -path $HOME/.trinity/share/apps/kmail/search -prune -o \ + -path $HOME/.trinity/share/apps/knotes -prune -o \ + -path $HOME/.trinity/share/apps/kopete/logs -prune -o \ + -type f -exec sed -i "s|/usr/share/|${TDEDIR}/share/|g" {} \; if [ "$?" = "0" ]; then if [ "$FIREFOX_PNG_LOCATION" != "" ]; then FIREFOX_PNG_LOCATION_NEW="`grep \"Icon=\" \"$HOME/.trinity/share/apps/kicker/mozilla-firefox.desktop\"`" |