Puppet Class: pxe

Defined in:
manifests/init.pp

Overview

Class: pxe

Setup a PXE root directory. This should do nothing but setup the base menuing system with syslinux and some pxe tools installed.

Parameters:

  • tftp_root (Any) (defaults to: '/srv/tftp')


6
7
8
9
10
11
# File 'manifests/init.pp', line 6

class pxe (
  $tftp_root='/srv/tftp'
){
  include pxe::syslinux
  include pxe::tools
}