5791101158
Turn off process accounting ('no procacct' mode). But atop still has an ability to collect valuable stats. Bring in internal "custom_acct_file" option: * false - use atop default accounting file * /path_to/atop.acct - custom one * undef - disable accounting procacct mode DocImpact: 'custom_accounting_file' is system wide process accounting file (valid values is above). Change-Id: Ida00dc663dd8c6494c479de2ae2f0f7ab6014a84 Closes-Bug: #1530167
31 lines
828 B
Ruby
31 lines
828 B
Ruby
require 'rubygems'
|
|
require 'puppetlabs_spec_helper/module_spec_helper'
|
|
|
|
fixture_path = File.expand_path(File.join(__FILE__, '..', 'fixtures'))
|
|
|
|
PROJECT_ROOT = File.expand_path('..', File.dirname(__FILE__))
|
|
$LOAD_PATH.unshift(File.join(PROJECT_ROOT, "lib"))
|
|
|
|
# Add fixture lib dirs to LOAD_PATH. Work-around for PUP-3336
|
|
if Puppet.version < '4.0.0'
|
|
Dir["#{fixture_path}/modules/*/lib"].entries.each do |lib_dir|
|
|
$LOAD_PATH << lib_dir
|
|
end
|
|
end
|
|
|
|
RSpec.configure do |c|
|
|
c.module_path = File.join(fixture_path, 'modules')
|
|
c.manifest_dir = File.join(fixture_path, 'manifests')
|
|
c.mock_with(:mocha)
|
|
c.alias_it_should_behave_like_to :it_configures, 'configures'
|
|
end
|
|
|
|
def puppet_debug_override
|
|
if ENV['SPEC_PUPPET_DEBUG']
|
|
Puppet::Util::Log.level = :debug
|
|
Puppet::Util::Log.newdestination(:console)
|
|
end
|
|
end
|
|
|
|
###
|