From 17431c02e735fa158b8518c4e98c177930662754 Mon Sep 17 00:00:00 2001 From: Aaron Blew Date: Fri, 27 Sep 2013 00:24:58 -0700 Subject: [PATCH] Help message for pluginsync now references the correct section of the config --- README.markdown | 2 +- manifests/setup.pp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index c9a52b3..9580c9d 100644 --- a/README.markdown +++ b/README.markdown @@ -80,7 +80,7 @@ manifest files. Known Issues: ------------- * Since puppet-concat now relies on a fact for the concat directory, - you will need to set up pluginsync = true on the [master] section of your + you will need to set up pluginsync = true on both the master and client node's '/etc/puppet/puppet.conf' for at least the first run. You have this issue if puppet fails to run on the client and you have a message similar to diff --git a/manifests/setup.pp b/manifests/setup.pp index 15be696..55d7197 100644 --- a/manifests/setup.pp +++ b/manifests/setup.pp @@ -27,7 +27,7 @@ class concat::setup { if $::concat_basedir { $concatdir = $::concat_basedir } else { - fail ("\$concat_basedir not defined. Try running again with pluginsync=true on the [master] section of your node's '/etc/puppet/puppet.conf'.") + fail ("\$concat_basedir not defined. Try running again with pluginsync=true on the [master] and/or [main] section of your node's '/etc/puppet/puppet.conf'.") } $majorversion = regsubst($::puppetversion, '^[0-9]+[.]([0-9]+)[.][0-9]+$', '\1')