12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # 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_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_leap }} and Version should be {{ os_version }} or more"
- acct_service_success_msg: "acct is service is running"
- acct_service_fail_msg: "acct is service is not running"
- acct_package_success_msg: "acct package is available"
- acct_package_fail_msg: "acct package is not available"
- acct_disable_success_msg: "acct service is disabled"
- acct_disable_fail_msg: "acct service is not disabled"
- acct_enable_success_msg: "acct service is enabled"
- acct_enable_fail_msg: "acct service is not enabled"
- acct_ac_version_success_msg: "acct ac is found"
- acct_ac_version_fail_msg: "acct ac is not found"
- acct_sa_version_success_msg: "acct sa is found"
- acct_sa_version_fail_msg: "acct sa is not found"
- acct_ac_utility_success_msg: "acct ac utility is found"
- acct_ac_utility_fail_msg: "acct ac utility is not found"
- acct_sa_utility_success_msg: "acct sa utility is found"
- acct_sa_utility_fail_msg: "acct sa utility is not found"
- acct_active: "Active: active"
- acct_disabled: "Removed"
- acct_enabled: "Created symlink"
- acct_ac_version: "ac: GNU"
- acct_sa_version: "sa: GNU"
- acct_ac_sa_utility: "acct-6.6.4-2.25.x86_64"
- Disabled: "Disabled"
- Enabled: "Enabled"
|