source: trunk/puppet/modules/puppet-grub/manifests/init.pp @ 734

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

Cambiando archivo de configuracion por defecto de grub, haciendo que muestre el menu y sean 3 segundos de espera

File size: 544 bytes
Line 
1# copyright <sebas @ koumbit.org>
2# < josx @ inteorganic.com.ar >
3# Licence: GPL
4#
5
6class grub  {
7
8    package { [
9       "grub-common",
10       "grub-pc",
11       ]: ensure => installed
12    }
13
14    file {
15            "/etc/default/grub":
16            owner => root,
17            group => root,
18            mode => 644,
19            source => "puppet:///grub/grub"
20    }
21
22    exec { "exec_update_grub":
23            command => "update-grub2",
24            path => "/bin:/sbin:/usr/sbin:/usr/bin",
25            require => Package["grub-pc"]
26    }
27}
28   
Note: See TracBrowser for help on using the repository browser.