diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-06-13 17:31:10 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-06-13 17:31:10 +0000 |
| commit | 07e0d592c42249481aa7578e521182c6c19271ca (patch) | |
| tree | c2e20ff7dacd044586ae51be1716ed7b28b51e9e /lib | |
| parent | c380bfe234769165ba5c2e2d197dd1a1bdfa3e2b (diff) | |
| download | puppet-07e0d592c42249481aa7578e521182c6c19271ca.tar.gz puppet-07e0d592c42249481aa7578e521182c6c19271ca.tar.xz puppet-07e0d592c42249481aa7578e521182c6c19271ca.zip | |
Fixing #169. Tags are ignored during config.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1259 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/puppet/config.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/puppet/config.rb b/lib/puppet/config.rb index 7af3a72d9..bcfdabd90 100644 --- a/lib/puppet/config.rb +++ b/lib/puppet/config.rb @@ -525,8 +525,16 @@ Generated on #{Time.now}. objects = bucket.to_type objects.finalize + tags = nil + if Puppet[:tags] + tags = Puppet[:tags] + Puppet[:tags] = "" + end trans = objects.evaluate trans.evaluate + if tags + Puppet[:tags] = tags + end # Remove is a recursive process, so it's sufficient to just call # it on the component. |
