Hello @Ayman @kodekloud-support3 @mmumshad
It seems there is an error on lab: Chef Recipe → Step 3
Even with the hinted “correct answer” provided by lab, I am getting this error:
Can you check at your side?
Thank you
Hello @Ayman @kodekloud-support3 @mmumshad
It seems there is an error on lab: Chef Recipe → Step 3
Even with the hinted “correct answer” provided by lab, I am getting this error:
Can you check at your side?
Thank you
My workaround was to create a file that symlink points to:
package 'epel-release' do
action :install
end
package 'nginx' do
action :install
end
directory '/usr/share/doc/HTML' do
action :create
end
file '/usr/share/doc/HTML/index.html' do
action :create
end
file '/usr/share/nginx/html/index.html' do
content 'This NGINX web server was configured by Chef'
action :create
end