5cde6f1668
Change-Id: I84cd799630a5b930f7e22cad735205d122fa0fb1 Closes-Bug: 1456587 Signed-off-by: Sergii Golovatiuk <sgolovatiuk@mirantis.com>
16 lines
381 B
Puppet
16 lines
381 B
Puppet
# == Class: sysfs::service
|
|
#
|
|
# This class actually enables and runs the sysfsutils service to
|
|
# apply any configuration found in the config files
|
|
#
|
|
class sysfs::service inherits sysfs::params {
|
|
service { 'sysfsutils' :
|
|
ensure => 'running',
|
|
enable => true,
|
|
hasstatus => false,
|
|
hasrestart => true,
|
|
}
|
|
|
|
Sysfs_config_value <||> ~> Service['sysfsutils']
|
|
}
|