diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-30 05:46:12 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-30 05:46:12 +0800 |
commit | dff320e95e1d0a6aed0ec85efb495575ec0614b4 (patch) | |
tree | e1eb7ef4390eb0a4109fc8c2bf1e21c1ab33c3f4 /mail/thunderbird/files/moz_pis_S50cleanhome | |
parent | c916094aec2d5c829e79b8ed901cacbe8e477c16 (diff) | |
download | marcuscom-ports-dff320e95e1d0a6aed0ec85efb495575ec0614b4.tar marcuscom-ports-dff320e95e1d0a6aed0ec85efb495575ec0614b4.tar.gz marcuscom-ports-dff320e95e1d0a6aed0ec85efb495575ec0614b4.tar.bz2 marcuscom-ports-dff320e95e1d0a6aed0ec85efb495575ec0614b4.tar.lz marcuscom-ports-dff320e95e1d0a6aed0ec85efb495575ec0614b4.tar.xz marcuscom-ports-dff320e95e1d0a6aed0ec85efb495575ec0614b4.tar.zst marcuscom-ports-dff320e95e1d0a6aed0ec85efb495575ec0614b4.zip |
- Remove
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5245 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'mail/thunderbird/files/moz_pis_S50cleanhome')
-rw-r--r-- | mail/thunderbird/files/moz_pis_S50cleanhome | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/mail/thunderbird/files/moz_pis_S50cleanhome b/mail/thunderbird/files/moz_pis_S50cleanhome deleted file mode 100644 index 348592392..000000000 --- a/mail/thunderbird/files/moz_pis_S50cleanhome +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# - -# S50cleanhome -# a script to polite ${HOME}/${MOZ_PIS_USER_DIR} - -# We run in our own subshell - -# First, verify protocol -[ "$1" != "start" ] && exit 1 -[ -z "${MOZ_PIS_API}" -o ${MOZ_PIS_API} -ne 2 ] && exit 1 -[ -z "${MOZ_PIS_MOZBINDIR}" -o ! -d "${MOZ_PIS_MOZBINDIR}" ] && exit 1 -[ -z "${HOME}" -o ! -d "${HOME}" ] && exit 1 -[ -z "${MOZ_PIS_USER_DIR}" -o ! -d "${HOME}/${MOZ_PIS_USER_DIR}" ] && exit 1 - -# Try to polite ${HOME}/${MOZ_PIS_USER_DIR} - -# This must be really needed? -# rm -f "${$HOME}/${MOZ_PIS_USER_DIR}/pluginreg.dat" - -# Try to polite profile dirs -if [ -f "${HOME}/${MOZ_PIS_USER_DIR}/profiles.ini" ]; then - sed -e '/Path=/! d' -e "s,Path=,${HOME}/${MOZ_PIS_USER_DIR}/," \ - "${HOME}/${MOZ_PIS_USER_DIR}/profiles.ini" \ - | while read dir - do - [ ! -d "${dir}" ] && continue - # at last, debian do this, we do for new builds - # rm -f "${dir}/XUL.mfasl" - # make reclaculate compreg.dat, xpti.dat for new builds - [ "${dir}/compreg.dat" -ot "${MOZ_PIS_MOZBINDIR}/components.ini" ] && - rm -f "${dir}/compatibility.ini" "${dir}/XUL.mfasl" - done -fi |