| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
| |
caused other problems.
This whole thing will hopefully get *drastically* easier once we
get rid of global resources.
|
|
|
|
| |
clear how to solve the problem.
|
|
|
|
| |
managed resources.
|
|
|
|
| |
since it didn't work and is now unnecessary.
|
|
|
|
|
|
|
|
| |
a central module responsible for managing the http pool
(Puppet::Network::HttpPool), and it also handles
setting certificate information. This gets rid of
what were otherwise long chains of method calls,
and it makes the code paths much clearer.
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
yum providers.
Before, 'rpm -e' was called without a package name. The code now makes sure
that 'rpm -e' gets exactly one package to uninstall on each invocation,
since rpm gets grumpy otherwise (besides passing the correct package NVR,
of course).
|
|/
|
|
| |
against 0.24.0 servers.
|
|
|
|
|
| |
a new connection is requested, and closing all connections
at the end of each run.
|
|
|
|
|
|
|
|
| |
While module specific plugins are a good thing, explicit plugins that don't fit into
modules should be allowed or at least not deprecated until it's proven that they are not
useful to anyone.
(Patch by Chris MacLeod.)
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
resulted in the resource duplication, based on how the
settings are used, so I added a test to only use those settings
if the directories do not exist.
This isn't a great fix, but it will suffice until I can kill these
resource conflicts once and for all.
|
|/
|
|
| |
not by puppetmasterd.
|
|
|
|
|
|
| |
Hosts were keeping the export bit on all resources,
even when they'd collected another host's resources,
which caused a duplicate copy that was still exported.
|
|
|
|
| |
unneeded and can cause conflicts within puppetmasterd
|
| |
|
| |
|
|
|
|
| |
requested in #960.
|
|
|
|
|
| |
the Facter terminus until I have a better solution.
This problem was discovered becomes of #958.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
changelog:
Modifying the behaviour of the certdnsnames setting. It now defaults
to an empty string, and will only be used if it is set to something
else. If it is set, then the host's FQDN will also be added as
an alias. The default behaviour is now to add 'puppet' and
'puppet.$domain' as DNS aliases when the name for the cert being
signed is equal to the signing machine's name, which will only
be the case for CA servers. This should result in servers always
having the alias set up and no one else, but you can still override
the aliases if you want.
|
|
|
|
| |
provider, since it's no longer needed or even valid.
|
|\ |
|
| | |
|
| |
| |
| |
| | |
because it breaks autoloading as indicated in #956.
|
| |
| |
| |
| | |
matching in the tidy type.
|
| | |
|
| |
| |
| |
| | |
in #895.
|
| |
| |
| |
| | |
provided by raj in #880.
|
| |
| |
| |
| | |
in #741.
|
| |
| |
| |
| | |
and I had to make a few small changes to make them work.
|
| | |
|
| |
| |
| |
| | |
necessary to support it.
|
| |
| |
| |
| | |
set the 'node_terminus' setting to 'exec'.
|
| |
| |
| |
| |
| |
| | |
except that I was not passing the interpolated value in
to the hook, which meant the libdir was set to something
like $vardir/lib.
|
| |
| |
| |
| |
| | |
when the configuration file is parsed. The bug is still
there, but I'm getting closer.
|
| |
| |
| |
| | |
in the openbsd package provider.
|
| |
| |
| |
| |
| |
| | |
correctly searching for the host, so it was creating
a new host on each run, which is what was causing the
conflict.
|
| |
| |
| |
| | |
host are no longer marked as not exported.
|
| | |
|
|/
|
|
| |
validate the server certificate, honoring CVE-2007-5162.
|
| |
|
| |
|
|
|
|
|
|
|
| |
are running), and #918 (service tests fail when hddtemp is not installed).
Mostly, I just rewrote the service tests, but I cleaned up the cruft from the
Service class, too.
|
|\ |
|
| |
| |
| |
| | |
compatibility
|
|/
|
|
| |
and old client
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
there were enough problems fixing it that I decided something
more drastic needed to be done.
This uses the new Puppet::ResourceReference class to canonize
what a resource reference looks like and how to retrieve resources
via their references. Specifically, it guarantees that resource types
are always capitalized, even when they include '::' in them.
While many files are modified in this commit, the majority of changes are
quite small, and most of the changes are fixing the tests to use
capitalized types.
As we look at consolidating some of our resource types, we could consolidate
the ResourceReference stuff at the same time, but at least the
Puppet::Parser::ResourceReference class subclasses the main Puppet::ResourceReference
class.
|
|
|
|
| |
else can use to canonize how we refer to resources. Finally.
|
|
|
|
|
|
| |
AST code now correctly finds the resource. It's getting
lost in the configuration translation, though, so I
need to fix that, too.
|