1

I'd like to set up puppet storedconfigs. How do I do that? I've followed the steps here and here to set up my puppet master and to enlist a server (respectively).

How can I set up storedconfigs?

jrg
  • 60,611

1 Answers1

1

First, follow the steps here and here to set up your puppetmaster and agents.

Add the following lines to your /etc/puppet/puppet.conf under the [master] header.

storeconfigs = true
dbadapter = sqlite3

Now, install rails with

sudo apt-get install rails

And then restart your puppetmaster with

sudo service puppetmaster restart

Now, you should be set to use storeconfigs.

jrg
  • 60,611