2
Chef:为模板创建目录(如果尚不存在)
如果我正在创建模板,如何确保目录存在?例如: 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要复制到的操作,因此失败。我在考虑p如何允许您“确保”目录存在。