Class: Itamae::Resource::Link
Instance Attribute Summary
Attributes inherited from Base
#attributes, #current_attributes, #notifications, #recipe, #resource_name, #subscriptions, #updated
Instance Method Summary collapse
Methods inherited from Base
#action_nothing, define_attribute, #do_not_run_because_of_not_if?, #do_not_run_because_of_only_if?, inherited, #initialize, #resource_type, #run
Constructor Details
This class inherits a constructor from Itamae::Resource::Base
Instance Method Details
#action_create(options) ⇒ Object
24 25 26 27 28 29 |
# File 'lib/itamae/resource/link.rb', line 24 def action_create() unless run_specinfra(:check_file_is_linked_to, attributes.link, attributes.to) run_specinfra(:link_file_to, attributes.link, attributes.to, force: attributes.force, no_dereference: attributes.force) end end |
#pre_action ⇒ Object
9 10 11 12 13 14 |
# File 'lib/itamae/resource/link.rb', line 9 def pre_action case @current_action when :create attributes.exist = true end end |
#set_current_attributes ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/itamae/resource/link.rb', line 16 def set_current_attributes current.exist = run_specinfra(:check_file_is_link, attributes.link) if current.exist current.to = run_specinfra(:get_file_link_target, attributes.link).stdout.strip end end |