#!/bin/bash FIREFOX_ORIG="/usr/bin/firefox" ACCV_VS_FIREFOX="/usr/bin/firefox-vs-accv.sh" rc=0 zenity --question --text="Degut a l'incompatibilitat entre els certificats de l'ACCV i el Firefox, s'instalarà un procés que cada volta que es llançe el firefox, matarà totes les anteriors instàncies del mateix" --ok-label="Si, estic d'acord" --cancel-label="No, no vull instal·lar-lo"|| rc=1 if [ $rc -eq 0 ] ; then if [ ! -f $FIREFOX_ORIG.accv ] ; then mv $FIREFOX_ORIG $FIREFOX_ORIG.accv fi cp $ACCV_VS_FIREFOX $FIREFOX_ORIG fi zero-sqlmanager -s firefox-vs-accv 1 zero-sqlmanager -s firefox-return-vs-accv 0 exit 0