diff options
| author | Luke Kanies <luke@madstop.com> | 2007-09-22 14:25:17 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-09-22 14:25:17 -0500 |
| commit | 86dde63473d29c45d8698ce4edd53c820a621362 (patch) | |
| tree | 5fe7d7095d1375cbbcb22e7cd6ac0a2071f6ca80 /lib/puppet/network/handler | |
| parent | 60cd6a73b2b0cb7b26b091d4214c66eb5ed3b0ad (diff) | |
All tests now pass in this configuration branch, which means
it's time to merge it back into the indirection branch.
Considering that this work was what drove me to create the
indirection branch in the first place, i should now be able to
merge both back in the master branch.
Diffstat (limited to 'lib/puppet/network/handler')
| -rwxr-xr-x | lib/puppet/network/handler/runner.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/network/handler/runner.rb b/lib/puppet/network/handler/runner.rb index c41e83608..4b9ccab75 100755 --- a/lib/puppet/network/handler/runner.rb +++ b/lib/puppet/network/handler/runner.rb @@ -50,10 +50,10 @@ class Puppet::Network::Handler # And then we need to tell it to run, with this extra info. if fg - master.run(tags, ignoreschedules) + master.run(:tags => tags, :ignoreschedules => ignoreschedules) else Puppet.newthread do - master.run(tags, ignoreschedules) + master.run(:tags => tags, :ignoreschedules => ignoreschedules) end end |
