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..
Asked
Active
Viewed 233 times
-3
-
3What is the deprecation error you are getting? – Belmin Fernandez Mar 19 '15 at 15:46
1 Answers
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,799
- 27
- 84
- 148