source: trunk/puppet/modules/puppet-escritorio/manifests/classes/firefox.pp @ 723

Last change on this file since 723 was 723, checked in by josx@…, 14 years ago

Haciendo que funcione la startup page en firefox 3.6.3 en ubuntu lucid

File size: 514 bytes
RevLine 
[222]1# Example:
[609]2#    escritorio::ubufox::startuppage { dist:
3#        startuppage => "http://www.sedenacional.cta.org.ar",
[222]4#    }
5
[609]6define escritorio::ubufox::startuppage ( $startuppage ) {
[723]7    file { "/etc/xul-ext/ubufox.js":
[609]8    ensure  => "present",
[723]9    content => "pref(\"browser.startup.homepage\", \"file:/etc/xul-ext/ubuntu-firefox-startup-page.conf\");\n",
[222]10   }
11
[723]12   file { "/etc/xul-ext/ubuntu-firefox-startup-page.conf":
[222]13   ensure  => "present",
14   content => "browser.startup.homepage=$startuppage\n",
15   }
16}
Note: See TracBrowser for help on using the repository browser.