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

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

lo mudamos

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