We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ERROR: Please take a look at your interval settings
When running this cookbook for the first time and specifying an interval, the user is presented with this error:
Chef::Log.error 'Please take a look at your interval settings'
This may lead the user to believe that something is configured incorrectly. However, they may be getting this error because this returned false:
false
seconds_since_last_run > interval
Could we modify this error to be a warning and say something similar to:
Chef::Log.warn 'Audit run skipped due to interval configuration'
The text was updated successfully, but these errors were encountered:
vjeffrey
Successfully merging a pull request may close this issue.
Issue
When running this cookbook for the first time and specifying an interval, the user is presented with this error:
This may lead the user to believe that something is configured incorrectly. However, they may be getting this error because this returned
false
:Possible Solution
Could we modify this error to be a warning and say something similar to:
The text was updated successfully, but these errors were encountered: