Class: Chef::Provider::RemoteDirectory
- Inherits:
-
Directory
- Object
- Chef::Provider
- File
- Directory
- Chef::Provider::RemoteDirectory
- Extended by:
- Forwardable
- Includes:
- Mixin::FileClass
- Defined in:
- lib/chef/provider/remote_directory.rb
Instance Attribute Summary
Attributes inherited from File
#deployment_strategy, #managing_symlink, #needs_creating, #needs_unlinking
Attributes inherited from Chef::Provider
#action, #current_resource, #logger, #new_resource, #recipe_name, #run_context
Instance Method Summary collapse
-
#action_create ⇒ Object
Handle action :create.
-
#action_create_if_missing ⇒ Object
Handle action :create_if_missing.
-
#managed_files ⇒ Set
Hash containing keys of the paths for all the files that we sync, plus all their parent directories.
-
#overwrite? ⇒ Boolean
The overwrite property on the resource.
Methods included from Mixin::FileClass
Methods inherited from Directory
#action_delete, #define_resource_requirements, #load_current_resource
Methods inherited from File
#action_delete, #action_touch, #define_resource_requirements, #initialize, #load_current_resource, #manage_symlink_access?
Methods included from Util::Selinux
#restore_security_context, #selinux_enabled?
Methods included from Mixin::ShellOut
apply_default_env, maybe_add_timeout, #shell_out, #shell_out!
Methods included from Mixin::Checksum
Methods included from Mixin::EnforceOwnershipAndPermissions
#access_controls, #enforce_ownership_and_permissions
Methods inherited from Chef::Provider
action, #action_nothing, #check_resource_semantics!, #cleanup_after_converge, #compile_and_converge_action, #converge_by, #converge_if_changed, #cookbook_name, #define_resource_requirements, #description, #events, include_resource_dsl?, include_resource_dsl_module, #initialize, #introduced, #load_current_resource, #node, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, use_inline_resources, #whyrun_mode?, #whyrun_supported?
Methods included from Mixin::Provides
#provided_as, #provides, #provides?
Methods included from Mixin::DescendantsTracker
#descendants, descendants, direct_descendants, #direct_descendants, find_descendants_by_name, #find_descendants_by_name, #inherited, store_inherited
Methods included from Mixin::LazyModuleInclude
#descendants, #include, #included
Methods included from Mixin::PowershellOut
#powershell_out, #powershell_out!
Methods included from Mixin::WindowsArchitectureHelper
#assert_valid_windows_architecture!, #disable_wow64_file_redirection, #forced_32bit_override_required?, #is_i386_process_on_x86_64_windows?, #node_supports_windows_architecture?, #node_windows_architecture, #restore_wow64_file_redirection, #valid_windows_architecture?, #with_os_architecture, #wow64_architecture_override_required?, #wow64_directory
Methods included from Mixin::PowershellExec
Methods included from DSL::Powershell
Methods included from DSL::RegistryHelper
#registry_data_exists?, #registry_get_subkeys, #registry_get_values, #registry_has_subkeys?, #registry_key_exists?, #registry_value_exists?
Methods included from DSL::DataQuery
#data_bag, #data_bag_item, #search, #tagged?
Methods included from EncryptedDataBagItem::CheckEncrypted
Methods included from DSL::PlatformIntrospection
#older_than_win_2012_or_8?, #platform?, #platform_family?, #value_for_platform, #value_for_platform_family
Methods included from Mixin::NotifyingBlock
#notifying_block, #subcontext_block
Methods included from DSL::DeclareResource
#build_resource, #declare_resource, #delete_resource, #delete_resource!, #edit_resource, #edit_resource!, #find_resource, #find_resource!, #resources, #with_run_context
Constructor Details
This class inherits a constructor from Chef::Provider::File
Instance Method Details
#action_create ⇒ Object
Handle action :create.
61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/chef/provider/remote_directory.rb', line 61 def action_create super # Transfer files files_to_transfer.each do |cookbook_file_relative_path| create_cookbook_file(cookbook_file_relative_path) # parent directories and file being transferred need to not be removed in the purge add_managed_file(cookbook_file_relative_path) end purge_unmanaged_files end |
#action_create_if_missing ⇒ Object
Handle action :create_if_missing.
76 77 78 79 80 |
# File 'lib/chef/provider/remote_directory.rb', line 76 def action_create_if_missing # if this action is called, ignore the existing overwrite flag @overwrite = false action_create end |
#managed_files ⇒ Set
Hash containing keys of the paths for all the files that we sync, plus all their parent directories.
55 56 57 |
# File 'lib/chef/provider/remote_directory.rb', line 55 def managed_files @managed_files ||= Set.new end |
#overwrite? ⇒ Boolean
The overwrite property on the resource. Delegates to new_resource but can be mutated.
45 46 47 48 |
# File 'lib/chef/provider/remote_directory.rb', line 45 def overwrite? @overwrite = new_resource.overwrite if @overwrite.nil? !!@overwrite end |