fuel-library/deployment/puppet/sysfs/manifests/service.pp
Dmitry Ilyin 5cde6f1668 Implement sysfs values management resource
Change-Id: I84cd799630a5b930f7e22cad735205d122fa0fb1
Closes-Bug: 1456587
Signed-off-by: Sergii Golovatiuk <sgolovatiuk@mirantis.com>
2015-05-26 14:24:30 +00:00

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']
}