Puppet Class: interface::rps::modparams

Defined in:
modules/interface/manifests/rps/modparams.pp

Overview

SPDX-License-Identifier: Apache-2.0



2
3
4
5
6
7
8
9
10
# File 'modules/interface/manifests/rps/modparams.pp', line 2

class interface::rps::modparams {
    include initramfs

    # clean up unused modprobe file
    file { '/etc/modprobe.d/rps.conf':
      ensure => absent,
      notify => Exec['update-initramfs']
    }
}