Puppet Class: pxe::tools

Defined in:
manifests/tools.pp

Overview

Class: pxe::tools

Create the tools menu



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'manifests/tools.pp', line 5

class pxe::tools {

  $tftp_root = $::pxe::tftp_root

  # Create the directory to store all the tool images
  file { "${tftp_root}/tools":
    ensure => directory,
  }

  # Create the tool menu
  pxe::menu { 'Tools':
    file => 'menu_tools',
  }

  # Bring in some tools
  include pxe::tools::memtest
}