-3

I want to remove templatedir from the puppet conf so that there won't be a deprecation error. But its not under puppet.conf or anywhere else I guess. I've grepped for that line almost everywhere..

Kishore
  • 1
  • 1
  • 1

1 Answers1

1

The templatedir deprecation is documented in Puppet's reference page.

You should look at the generated config:

$ puppet config print templatedir --section master

You will need to move tempalates to the module's /templates folder. For e.g. modules/example/templates/.

Belmin Fernandez
  • 10,629
  • 26
  • 84
  • 145