diff options
| author | Luke Kanies <luke@madstop.com> | 2005-05-16 17:56:37 +0000 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2005-05-16 17:56:37 +0000 |
| commit | f91451d90114ff31e69ea66a15932a0e9cba5f04 (patch) | |
| tree | ca3080fd33c276e446d0869fe04cb8cd57552390 /lib | |
| parent | d0d8df94927e4da9e8539d3f038636c32ab2e87a (diff) | |
yep, arrays are always passed
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@256 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/blink/type/service.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/blink/type/service.rb b/lib/blink/type/service.rb index 0aa90cda1..0fe71f61a 100644 --- a/lib/blink/type/service.rb +++ b/lib/blink/type/service.rb @@ -127,9 +127,9 @@ module Blink raise "Could not find init script for '%s'" % name end - def Service.setpath(*ary) + def Service.setpath(ary) # verify each of the paths exists - ary.flatten! + #ary.flatten! @searchpaths = ary.find_all { |dir| retvalue = false begin |
