diff --git a/manifests/logging.pp b/manifests/logging.pp index 7fd49ee1..845bacfd 100644 --- a/manifests/logging.pp +++ b/manifests/logging.pp @@ -37,6 +37,10 @@ # (Optional) File where logs should be stored. # Defaults to $::os_service_default # +# [*watch_log_file*] +# (Optional) Uses logging handler designed to watch file system (boolean value). +# Defaults to $::os_service_default +# # [*logging_context_format_string*] # (Optional) Format string to use for log messages with context. # Defaults to $::os_service_default @@ -105,6 +109,7 @@ class cinder::logging( $log_facility = $::os_service_default, $log_dir = '/var/log/cinder', $log_file = $::os_service_default, + $watch_log_file = $::os_service_default, $debug = $::os_service_default, $logging_context_format_string = $::os_service_default, $logging_default_format_string = $::os_service_default, @@ -129,6 +134,7 @@ class cinder::logging( use_stderr => $use_stderr, log_dir => $log_dir, log_file => $log_file, + watch_log_file => $watch_log_file, syslog_log_facility => $log_facility, logging_context_format_string => $logging_context_format_string, logging_default_format_string => $logging_default_format_string, diff --git a/releasenotes/notes/add_watch_log_file-option-b74553a438d125bc.yaml b/releasenotes/notes/add_watch_log_file-option-b74553a438d125bc.yaml new file mode 100644 index 00000000..b1caab97 --- /dev/null +++ b/releasenotes/notes/add_watch_log_file-option-b74553a438d125bc.yaml @@ -0,0 +1,4 @@ +--- +features: + - | + The new ``cinder::logging::watch_log_file`` parameter has been added. diff --git a/spec/classes/cinder_logging_spec.rb b/spec/classes/cinder_logging_spec.rb index 75afb885..735e850f 100644 --- a/spec/classes/cinder_logging_spec.rb +++ b/spec/classes/cinder_logging_spec.rb @@ -29,6 +29,7 @@ describe 'cinder::logging' do :log_facility => 'LOG_FOO', :log_dir => '/var/log', :log_file => '/var/log/cinder/cinder.log', + :watch_log_file => true, :debug => true, } end @@ -58,13 +59,14 @@ describe 'cinder::logging' do shared_examples 'basic default logging settings' do it 'configures cinder logging settings with default values' do is_expected.to contain_oslo__log('cinder_config').with( - :use_syslog => '', - :use_json => '', - :use_journal => '', - :use_stderr => '', - :log_dir => '/var/log/cinder', - :log_file => '', - :debug => '', + :use_syslog => '', + :use_json => '', + :use_journal => '', + :use_stderr => '', + :log_dir => '/var/log/cinder', + :log_file => '', + :watch_log_file => '', + :debug => '', ) end end @@ -79,6 +81,7 @@ describe 'cinder::logging' do :syslog_log_facility => 'LOG_FOO', :log_dir => '/var/log', :log_file => '/var/log/cinder/cinder.log', + :watch_log_file => true, :debug => true, ) end