File tree 3 files changed +12
-0
lines changed
bosh-stemcell/spec/support
stemcell_builder/stages/rsyslog_config
3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 192
192
it { should be_file }
193
193
its ( :content ) { should match ( 'ModLoad imklog' ) }
194
194
end
195
+
196
+ describe file ( '/etc/rsyslog.d/avoid-startup-deadlock.conf' ) do
197
+ it { should be_file }
198
+ its ( :content ) { should match ( /global\( processInternalMessages="on"\) / ) }
199
+ end
195
200
end
196
201
197
202
context 'auditd should be installed but not enabled (stig: V-38628) (stig: V-38631) (stig: V-38632)' do
Original file line number Diff line number Diff line change 25
25
fi
26
26
27
27
cp $assets_dir /enable-kernel-logging.conf $chroot /etc/rsyslog.d/enable-kernel-logging.conf
28
+ cp $assets_dir /avoid-startup-deadlock.conf $chroot /etc/rsyslog.d/avoid-startup-deadlock.conf
28
29
29
30
cp -f $assets_dir /rsyslog_50-default.conf $chroot /etc/rsyslog.d/50-default.conf
30
31
Original file line number Diff line number Diff line change
1
+ # avoid-startup-deadlock.conf
2
+ #
3
+ # This configuration is a workaround for
4
+ # https://github.com/rsyslog/rsyslog/issues/1188
5
+
6
+ global(processInternalMessages="on")
You can’t perform that action at this time.
0 commit comments