यदि मेरे पास एक टेम्पलेट बनाया जा रहा है, तो मैं यह कैसे सुनिश्चित कर सकता हूं कि निर्देशिका मौजूद है? उदाहरण के लिए:
template "#{node[:app][:deploy_to]}/#{node[:app][:name]}/shared/config/database.yml" do
source 'database.yml.erb'
owner node[:user][:username]
group node[:user][:username]
mode 0644
variables({
:environment => node[:app][:environment],
:adapter => node[:database][:adapter],
:database => node[:database][:name],
:username => node[:database][:username],
:password => node[:database][:password],
:host => node[:database][:host]
})
end
यह तब तक विफल रहता है जब तक की प्रतिलिपि बनाने के /var/www/example/shared/config
लिए मौजूद नहीं है database.yml
। मैं सोच रहा हूँ कि कैसे कठपुतली आपको निर्देशिका सुनिश्चित करने के लिए अनुमति देता है।
recursive
विकल्प को नापसंद करता हूं ;-)