summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeha Pansare <neha.pansare@progress.com>2022-06-24 14:46:42 +0530
committerNeha Pansare <neha.pansare@progress.com>2022-06-24 14:46:42 +0530
commitec5d2e18a107050a8b5429268c070b13b30f13d7 (patch)
tree5cbcf10bf984a9b155d8788ce609f95587f020f9
parentc061eea9995d8ea676dc5fd24fda16e068ed50a3 (diff)
downloadchef-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>
-rw-r--r--kitchen-tests/cookbooks/end_to_end/recipes/linux.rb2
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"