summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-01-07 19:24:10 -0600
committerLuke Kanies <luke@madstop.com>2008-01-07 19:24:10 -0600
commit40addcd1920b0fa2f558c415e65ea665bac812f9 (patch)
treed2792c1d8c84d2cfaed6b48a4642d3ef29ba79c9 /lib/puppet/parser
parent927dff41df8f1c236c54eaee9fa1db7a3efaf02a (diff)
downloadpuppet-40addcd1920b0fa2f558c415e65ea665bac812f9.tar.gz
puppet-40addcd1920b0fa2f558c415e65ea665bac812f9.tar.xz
puppet-40addcd1920b0fa2f558c415e65ea665bac812f9.zip
Fixing #982 -- I have completely removed the GRATR graph library
from the system, and implemented my own topsort method.
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r--lib/puppet/parser/compile.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/puppet/parser/compile.rb b/lib/puppet/parser/compile.rb
index c065e3f38..f76103a28 100644
--- a/lib/puppet/parser/compile.rb
+++ b/lib/puppet/parser/compile.rb
@@ -1,10 +1,6 @@
# Created by Luke A. Kanies on 2007-08-13.
# Copyright (c) 2007. All rights reserved.
-require 'puppet/external/gratr/digraph'
-require 'puppet/external/gratr/import'
-require 'puppet/external/gratr/dot'
-
require 'puppet/node'
require 'puppet/node/catalog'
require 'puppet/util/errors'
@@ -420,7 +416,7 @@ class Puppet::Parser::Compile
@tags = []
# A graph for maintaining scope relationships.
- @scope_graph = GRATR::Digraph.new
+ @scope_graph = Puppet::SimpleGraph.new
# For maintaining the relationship between scopes and their resources.
@catalog = Puppet::Node::Catalog.new(@node.name)