diff options
author | Neha Pansare <neha.pansare@progress.com> | 2022-06-24 14:46:42 +0530 |
---|---|---|
committer | Neha Pansare <neha.pansare@progress.com> | 2022-06-24 14:46:42 +0530 |
commit | ec5d2e18a107050a8b5429268c070b13b30f13d7 (patch) | |
tree | 5cbcf10bf984a9b155d8788ce609f95587f020f9 /kitchen-tests | |
parent | c061eea9995d8ea676dc5fd24fda16e068ed50a3 (diff) | |
download | chef-ec5d2e18a107050a8b5429268c070b13b30f13d7.tar.gz |
Added condition to prevent installtion of nscd on fedora in end_to_end kitchen tests as fedora 35+ doesn't have the package
Signed-off-by: Neha Pansare <neha.pansare@progress.com>
Diffstat (limited to 'kitchen-tests')
-rw-r--r-- | kitchen-tests/cookbooks/end_to_end/recipes/linux.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/linux.rb b/kitchen-tests/cookbooks/end_to_end/recipes/linux.rb index eb4f4fe546..64f9e8e252 100644 --- a/kitchen-tests/cookbooks/end_to_end/recipes/linux.rb +++ b/kitchen-tests/cookbooks/end_to_end/recipes/linux.rb @@ -61,7 +61,7 @@ ssh_known_hosts_entry "github.com" include_recipe "openssh" -include_recipe "nscd" +include_recipe "nscd" unless fedora? # fedora 35+ doesn't have nscd logrotate_package "logrotate" |