I've set up a puppet (3.7.2) master server on a Debian 8 Jessie box, but somehow the config directives I've written get ignored:
[14:24:43|root@puppetmaster:~] cat /etc/puppet/puppet.conf
[master]
server=puppetmaster
This is a very basic config, yet it fails to take into account my directive. If I start the master:
[14:33:54|root@puppetmaster:~] puppet master ; puppet config print |grep ^server
server = puppet
Same goes if I try to start it with arguments :
[14:35:29|root@puppetmaster:~] puppet master --server puppetmaster ; puppet config print |grep ^server
server = puppet
Same result if I try the above under the puppet user.
I just don't see what I might be missing.
Thanks