1234567891011121314151617181920212223242526272829303132333435 |
- # Copyright 2022 Dell Inc. or its subsidiaries. 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.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- ---
- #Usage: test_snoopy.yml
- os_name_centos: CentOS
- os_name_rocky: rocky
- os_name_leap: leap
- os_version: '8.5'
- check_os_success_msg: "OS and Version are supported"
- check_os_fail_msg: "Unsupported OS or OS version. OS should be {{ os_name_rocky }} and Version should be {{ os_version }} or more"
- snoopy_log_path_success_msg: "snoopy log path is available"
- snoopy_log_path_fail_msg: "snoopy log path is not available"
- secure_snoopy_enable_success_msg: "snoopy is enabled in secure log"
- secure_snoopy_enable_fail_msg: "snoopy is not enabled in secure log"
- messages_snoopy_enable_success_msg: "snoopy is enabled in messages log"
- messages_snoopy_enable_fail_msg: "snoopy is not enabled in messages log"
- snoopy_disabled_success_msg: "snoopy is disabled in log"
- snoopy_disabled_fail_msg: "snoopy is not disabled in log"
- secure_snoopy_disabled_success_msg: "snoopy is disabled in secure log"
- secure_snoopy_disabled_fail_msg: "snoopy is not disabled in secure log"
- snoopy_enable_success_msg: "snoopy is enabled in log"
- snoopy_enable_fail_msg: "snoopy is not enabled in log"
|