Ignore:
Timestamp:
Oct 30, 2009, 7:12:01 PM (14 years ago)
Author:
sebas
Message:

servicio rpld.conf

Location:
trunk/puppet/modules/di_netboot_assistant
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/puppet/modules/di_netboot_assistant/manifests/init.pp

    r422 r424  
    104104  }
    105105}
     106
     107class di_netboot_assistant::rpld {
     108
     109## boot novell - netboot bios
     110#  TODO: configure /etc/default/rpld
     111#        configure /etc/rpld.conf for pxe booting
     112#        http://help.lockergnome.com/linux/Netbooting-RPL--ftopict415270.html
     113#       http://etherboot.org/wiki/rplchaining
     114#
     115    package { [ "rpld" ]: ensure => installed }
     116
     117   # rpld.conf configuration.
     118   file { "/etc/rpld.conf":
     119      owner => root,
     120      group => root,
     121      mode => 644,
     122      source => "puppet:///di_netboot_assistant/rpld.conf"
     123   }
     124
     125
     126   # download the http://rom-o-matic.net/gpxe/gpxe-git/gpxe.git/contrib/rom-o-matic/
     127   # gPXE 0.9.9+
     128   # pxe bootstraploader / all driver
     129   file { "/var/lib/tftpboot/gpxe.pxe":
     130      owner => root,
     131      group => root,
     132      mode => 644,
     133      source => "puppet:///di_netboot_assistant/gpxe.pxe"
     134   }
     135
     136}
Note: See TracChangeset for help on using the changeset viewer.