Class: Chef::FileContentManagement::Deploy
- Inherits:
-
Object
- Object
- Chef::FileContentManagement::Deploy
- Defined in:
- lib/chef/file_content_management/deploy.rb,
lib/chef/file_content_management/deploy/cp.rb,
lib/chef/file_content_management/deploy/mv_unix.rb,
lib/chef/file_content_management/deploy/mv_windows.rb more...
Defined Under Namespace
Classes: Cp, MvUnix, MvWindows
Class Method Summary collapse
Class Method Details
permalink .strategy(atomic_update) ⇒ Object
[View source]
28 29 30 31 32 33 34 |
# File 'lib/chef/file_content_management/deploy.rb', line 28 def self.strategy(atomic_update) if atomic_update ChefUtils.windows? ? MvWindows.new : MvUnix.new else Cp.new end end |