From ba9d85c744ff3b439631c4c91aded64b05f80271 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 18 Sep 2013 14:17:54 -0700 Subject: [PATCH] provisioner/chef-solo: template process roles/data bags path /cc @jerryclinesmith --- provisioner/chef-solo/provisioner.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/provisioner/chef-solo/provisioner.go b/provisioner/chef-solo/provisioner.go index dd69d1410..0f4fe10ab 100644 --- a/provisioner/chef-solo/provisioner.go +++ b/provisioner/chef-solo/provisioner.go @@ -87,6 +87,8 @@ func (p *Provisioner) Prepare(raws ...interface{}) error { templates := map[string]*string{ "config_template": &p.config.ConfigTemplate, + "data_bags_path": &p.config.DataBagsPath, + "roles_path": &p.config.RolesPath, "staging_dir": &p.config.StagingDir, }