Puppet Class: dkms::autoinstall
- Defined in:
- manifests/autoinstall.pp
Summary
Just a place to run autoinstallOverview
7 8 9 10 11 12 13 14 15 |
# File 'manifests/autoinstall.pp', line 7
class dkms::autoinstall (
Integer $timeout,
) {
exec { 'dkms autoinstall':
path => $facts['path'],
refreshonly => true,
timeout => $timeout,
}
}
|