Created
April 16, 2014 23:46
-
-
Save joker-x/10942857 to your computer and use it in GitHub Desktop.
Parche para hacer funcionar iceweasel en las gestiones de la AEAT
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Cuando tratas de completar un trámite con Hacienda (AEAT) | |
# mediante un certificado digital correctamente instalado en iceweasel | |
# salta este error: | |
# es.gob.afirma.keystores.main.common.AOKeystoreAlternativeException | |
# Error message: Error al inicializar el almacen NSS unificado de | |
# Mozilla Firefox | |
# Para solucionarlo hay que crear determinados enlaces simbólicos | |
# en /opt/firefox: | |
mkdir /opt/firefox | |
# ARQUITECTURA x86_64 | |
ln -s /usr/lib/x86_64-linux-gnu/libnspr4.so /opt/firefox/libnspr4.so | |
ln -s /usr/lib/x86_64-linux-gnu/nss/libsoftokn3.so /opt/firefox/libsoftokn3.so | |
# ARQUITECTURA i386 | |
#ln -s /usr/lib/i386-linux-gnu/libnspr4.so /opt/firefox/libnspr4.so | |
#ln -s /usr/lib/i386-linux-gnu/nss/libsoftokn3.so /opt/firefox/libsoftokn3.so | |
# También instalé el complemento User Agent Switcher pero puede no ser necesario | |
# http://chrispederick.com/work/user-agent-switcher/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment