Hi, I've already seen that in my company on computers that where not turned off correctly ...
I've made this little script to repare that... Maybe it could help you... Regards Mathieu #!/bin/bash echo "Merci de patienter..." cd ~/.mozilla/ DATE_SAV=`date +%j_%T` mv firefox firefox-$DATE_SAV mozilla-firefox & sleep 20 pkill firefox-bin CHEMIN_PROFIL=`find ~/.mozilla//firefox/ | grep bookmarks.html | sed 's/bookmarks.html//'` echo "user_pref(\"browser.download.manager.closeWhenDone\", true);" >> $CHEMIN_PROFIL/prefs.js echo "user_pref(\"browser.download.manager.retention\", 0);" >> $CHEMIN_PROFIL/prefs.js echo "user_pref(\"browser.download.useDownloadDir\", false);" >> $CHEMIN_PROFIL/prefs.js echo "user_pref(\"browser.preferences.privacy.selectedTabIndex\", 3);" >> $CHEMIN_PROFIL/prefs.js echo "user_pref(\"browser.startup.homepage\", \"intranet\");" >> $CHEMIN_PROFIL/prefs.js echo "user_pref(\"network.proxy.autoconfig_url\", \"http://intranet/squid.pac\");" >> $CHEMIN_PROFIL/prefs.js echo "user_pref(\"network.proxy.type\", 2);" >> $CHEMIN_PROFIL/prefs.js echo "user_pref(\"signon.rememberSignons\", false);" >> $CHEMIN_PROFIL/prefs.js cp `find firefox-$DATE_SAV | grep bookmarks.html | head -n1` $CHEMIN_PROFIL -- nfs mount /home issues https://launchpad.net/bugs/71230 -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
