Puppet Class: fusioninventory
- Defined in:
- manifests/init.pp
Overview
5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'manifests/init.pp', line 5
class fusioninventory
(
$cronscript_enable = true,
$glpiserver = 'localhost',
$no_proxy = true,
)
{
include
'fusioninventory::install'
if ($cronscript_enable == true){
include 'fusioninventory::cronscript'
}
}
|