forked from aws/aws-parallelcluster-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add kitchen test to validate logrotate configuration
Add kitchen tests that checks if the overall logrotate configuration is valid by triggering the `logrotate` command. Signed-off-by: Jacopo De Amicis <[email protected]>
- Loading branch information
Showing
2 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
cookbooks/aws-parallelcluster-platform/test/controls/log_rotation_all_nodes.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright:: 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"). | ||
# You may not use this file except in compliance with the License. A copy of the License is located at | ||
# | ||
# http://aws.amazon.com/apache2.0/ | ||
# | ||
# or in the "LICENSE.txt" file accompanying this file. | ||
# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. | ||
# See the License for the specific language governing permissions and limitations under the License. | ||
|
||
# This control is generic enough to be applied to all types of nodes in ParallelCluster | ||
control 'tag:config_log_rotation_all_nodes' do | ||
title 'Check that log rotation has been properly configured' | ||
|
||
# This should be enough at least to verify that the logrotate overall configuration is valid. | ||
# WARNING: do not use the `--force` option, because running multiple times the command with the | ||
# `--force` option will cause the command to fail (defeating the purpose of the test) | ||
describe "Log rotation command runs successfully" do | ||
subject { command("sudo logrotate /etc/logrotate.conf") } | ||
its('exit_status') { should eq 0 } | ||
end | ||
|
||
end |