Puppet Class: profile::puppetmaster::updatenetboot

Defined in:
modules/profile/manifests/puppetmaster/updatenetboot.pp

Overview

SPDX-License-Identifier: Apache-2.0 Installs a script to add firmware to Debian netboot images



3
4
5
6
7
8
9
10
11
12
13
14
# File 'modules/profile/manifests/puppetmaster/updatenetboot.pp', line 3

class profile::puppetmaster::updatenetboot {

    file { '/usr/local/sbin/update-netboot-image':
        ensure => present,
        source => 'puppet:///modules/profile/puppetmaster/update-netboot-image.sh',
        mode   => '0544',
        owner  => 'root',
        group  => 'root',
    }

    ensure_packages('pax')
}