This commit is contained in:
Philippe Caseiro 2022-06-29 17:10:26 +02:00
parent 75c6635051
commit 137d0ce24c
2 changed files with 2 additions and 1 deletions

View File

@ -59,7 +59,7 @@ func (cf *ConfigFile) ProcessTemplate(source string, values []byte) (string, err
var result string
var err error
log.Printf("\t Generating template %s\n", source)
log.Printf("\nGenerating template %s\n", source)
if cf.TemplateType == "hcl" {
// The template is an hcl template so we call processHCLTemplate
result, err = cf.processHCLTemplate(source, values)

View File

@ -59,6 +59,7 @@ func (s *Service) Manage(templateDir string) error {
log.Printf("\tPackage %s installed\n", pack.Name)
}
log.Printf("Generating configuration files\n")
err = processConfigFiles(s.ConfigFiles, s.Vars, templateDir)
if err != nil {
return fmt.Errorf("ProcessingTemplatesFailed with error: %v", err)