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
Currently, the script just does the audit activity. ex: dpkg -s aide
dpkg -s aide
The expected outcome is installed ok installed
installed ok installed
I propose that the script should take this outcomes into consideration where possible, and provide the audit result.
Something like:
if [ `dpkg -s aide` = "installed ok installed" ]; then echo "Audit passed" else echo "Audit failed" fi
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the script just does the audit activity. ex:
dpkg -s aide
The expected outcome is
installed ok installed
I propose that the script should take this outcomes into consideration where possible, and provide the audit result.
Something like:
The text was updated successfully, but these errors were encountered: