summaryrefslogtreecommitdiffstats
path: root/lib/puppet/network/handler/node.rb
Commit message (Collapse)AuthorAgeFilesLines
* The Node handler is now obsolete. Node searching is handled through the ↵Luke Kanies2007-09-111-242/+0
| | | | indirector. I have not yet added the tests for the node handlers themselves, which is next.
* Renaming the instance loader method to "instance_load". It was previously ↵Luke Kanies2007-09-101-1/+1
| | | | autoload, which could class with Kernel.autoload.
* Removing extraneous logging from the node handlerLuke Kanies2007-09-101-1/+1
|
* The fileserver now uses an environment-specific module path. I also made ↵Luke Kanies2007-08-261-0/+15
| | | | various bug fixes around the network tree.
* The last commits before I actually start on the multi-environment support. ↵Luke Kanies2007-08-221-62/+22
| | | | There are still failing tests, but apparently only those that are also failing in trunk.
* A round of bugfixing. Many more tests now pass -- I think we are largely ↵Luke Kanies2007-08-201-0/+3
| | | | down to tests that (yay!) fail in trunk.
* Adding node caching, so that node sources are not spammed during file ↵Luke Kanies2007-08-151-0/+23
| | | | serving and such
* Keeping the node names in the node object, so that they are available to the ↵Luke Kanies2007-08-151-1/+2
| | | | interpreter
* Adding the necessary name/ip fields to the node methodsLuke Kanies2007-08-151-10/+10
|
* Finalizing the node handler. It now correctly uses the different node sourcesLuke Kanies2007-08-141-42/+136
| | | | | and knows how to retrieve data from those sources. Now I just need to fix the language stuff to use this handler instead of the existing node stuff.
* An intermediate commit in the work towards adding multi-environment support.Luke Kanies2007-08-141-0/+146
This has required splitting the interpreter up considerably, which is much cleaner but is a large project. There is now a 'nodes' handler, but it is currently non-functional, although all the support structure is there. It just needs to have the individual methods fleshed out, and it needs to be connected to the 'facts' handler.