Puppet Class: initramfs

Defined in:
modules/initramfs/manifests/init.pp

Overview

SPDX-License-Identifier: Apache-2.0



2
3
4
5
6
7
8
9
10
11
12
13
# File 'modules/initramfs/manifests/init.pp', line 2

class initramfs {
    package { 'initramfs-tools':
        ensure => installed,
    }

    exec { 'update-initramfs':
        refreshonly => true,
        command     => 'update-initramfs -u -k all',
        path        => '/bin:/usr/bin:/sbin:/usr/sbin',
        require     => Package['initramfs-tools'],
    }
}