0
我有廚師以下幾招:紅寶石解析錯誤
def prestashop_deployDatabase (username)
sql_path = '/tmp/prestashop_create_tables.sql'
template sql_path do
source "prestashop152.sql.erb"
owner "root"
group node['mysql']['root_group']
mode "0600"
variables(
:username => #{username}
)
action :create
end
end
出於某種原因;它無法理解我傳遞的'用戶名'參數。 PS:我是Ruby n00b。
不完全等價,'username.to_s'在萬一出現奇怪錯誤的情況下。 – Reactormonk