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