Puppet Class: systemd::modules_loads

Defined in:
manifests/modules_loads.pp

Overview

Activate the modules contained in modules-loads.d

See Also:

  • systemd-modules-loadsystemd-modules-load.service(8)


7
8
9
10
11
12
13
# File 'manifests/modules_loads.pp', line 7

class systemd::modules_loads {
  exec { 'systemd-modules-load' :
    command     => 'systemctl start systemd-modules-load.service',
    refreshonly => true,
    path        => $facts['path'],
  }
}