#!/bin/sh # Start script for GOsa to be started via mozilla url="" if [ $# -ne 1 ]; then echo "Usage: $(basename $0) " exit 1 fi # Check for presence of gosa profile if [ ! -d $HOME/.mozilla/firefox/*.gosa ]; then firefox -CreateProfile gosa config=`echo $HOME/.mozilla/firefox/*.gosa/` cat << EOF > $config/prefs.js # Mozilla User Preferences /* Do not edit this file. * * If you make changes to this file while the browser is running, * the changes will be overwritten when the browser exits. * * To make a manual change to preferences, you can visit the URL about:config * For more information, see http://www.mozilla.org/unix/customizing.html#prefs */ user_pref("app.update.autoUpdateEnabled", false); user_pref("app.update.enabled", false); user_pref("browser.download.folderList", 2); user_pref("browser.download.manager.showWhenStarting", false); user_pref("browser.formfill.enable", false); user_pref("browser.preferences.lastpanel", 1); user_pref("browser.search.selectedEngine", "Damnfresh"); user_pref("browser.startup.homepage", "$url"); user_pref("browser.startup.homepage_override.mstone", "rv:1.8.1.1"); user_pref("extensions.disabledObsolete", true); user_pref("extensions.lastAppVersion", "2.0.0.1"); user_pref("extensions.update.autoUpdateEnabled", false); user_pref("intl.charsetmenu.browser.cache", "ISO-8859-1"); user_pref("network.cookie.prefsMigrated", true); user_pref("security.OCSP.URL", ""); user_pref("security.OCSP.signingCA", "Builtin Object Token:IPS CLASE1 root"); user_pref("security.warn_entering_secure", false); user_pref("security.warn_leaving_secure", false); user_pref("security.warn_submit_insecure", false); user_pref("security.warn_viewing_mixed", false); user_pref("signon.rememberSignons", false); user_pref("security.warn_submit_insecure", false); EOF cat << EOF > $config/84795799.s #2c http://vserver-02 . EOF [ ! -d $config/chrome ] && mkdir -p $config/chrome cat << EOF > $config/chrome/userChrome.css #main-menubar { display: none; } #navigator-throbber { display: none; } EOF cat << EOF > $config/localstore.rdf EOF fi # Start mozilla with GOsa profile firefox -P gosa