On GRML_FULL add Iceweasel "branding"
authorChristian Hofstaedtler <ch@grml.org>
Wed, 12 Oct 2011 20:51:26 +0000 (22:51 +0200)
committerChristian Hofstaedtler <ch@grml.org>
Wed, 12 Oct 2011 20:51:26 +0000 (22:51 +0200)
etc/grml/fai/config/files/etc/iceweasel/profile/prefs.js/GRML_FULL [new file with mode: 0644]
etc/grml/fai/config/scripts/GRML_FULL/01-iceweasel [new file with mode: 0755]

diff --git a/etc/grml/fai/config/files/etc/iceweasel/profile/prefs.js/GRML_FULL b/etc/grml/fai/config/files/etc/iceweasel/profile/prefs.js/GRML_FULL
new file mode 100644 (file)
index 0000000..dd5fe1b
--- /dev/null
@@ -0,0 +1,14 @@
+# 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
+ */
+
+/* Added by grml-live */
+user_pref("browser.startup.homepage","/usr/share/doc/grml-docs/startpage.html");
+
diff --git a/etc/grml/fai/config/scripts/GRML_FULL/01-iceweasel b/etc/grml/fai/config/scripts/GRML_FULL/01-iceweasel
new file mode 100755 (executable)
index 0000000..b32fffc
--- /dev/null
@@ -0,0 +1,15 @@
+#!/bin/bash
+# Filename:      ${GRML_FAI_CONFIG}/config/scripts/GRML_FULL/01-iceweasel
+# Purpose:       add startpage to Iceweasel
+# Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
+# Bug-Reports:   see http://grml.org/bugs/
+# License:       This file is licensed under the GPL v2 or any later version.
+################################################################################
+
+set -u
+set -e
+
+fcopy -v /etc/iceweasel/profile/prefs.js
+
+## END OF FILE #################################################################
+# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2