14 lines
402 B
Text
14 lines
402 B
Text
if [ "" = "configure" ] || [ "" = "abort-upgrade" ] ; then
|
|
|
|
[ -f /usr/bin/firefox-esr ] || ln -s /usr/bin/icecat /usr/bin/firefox-esr
|
|
|
|
for HOMEDIR in /home/cups-pk-helper
|
|
/home/ark
|
|
do
|
|
[ -d /.mozilla/icecat ] && continue || true
|
|
[ -d /.mozilla/firefox-esr ] || continue
|
|
echo Linking /.mozilla/firefox-esr into /.mozilla/icecat
|
|
ln -s /.mozilla/firefox-esr /.mozilla/icecat
|
|
done
|
|
fi
|
|
exit 0
|