Puppet Class: razor::tftp

Defined in:
manifests/tftp.pp

Overview

Parameters:

  • server (Any)


1
2
3
4
5
6
7
8
9
10
11
# File 'manifests/tftp.pp', line 1

class razor::tftp(
  $server
) {
  include ::tftp

  ::tftp::file { "undionly.kpxe": }

  ::tftp::file { "bootstrap.ipxe":
    content => template('razor/bootstrap.ipxe.erb')
  }
}