Module: Fig::Command::Action::Role::Update

Included in:
Update, UpdateIfMissing
Defined in:
lib/fig/command/action/role/update.rb

Instance Method Summary collapse

Instance Method Details

#allow_both_descriptor_and_file?Boolean

Returns:

  • (Boolean)


13
14
15
16
# File 'lib/fig/command/action/role/update.rb', line 13

def allow_both_descriptor_and_file?()
  # We don't care, so we let the base action say what it wants.
  return true
end

#apply_base_config?Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/fig/command/action/role/update.rb', line 34

def apply_base_config?()
  return true
end

#apply_config?Boolean

Returns:

  • (Boolean)


30
31
32
# File 'lib/fig/command/action/role/update.rb', line 30

def apply_config?()
  return true
end

#descriptor_requirementObject



9
10
11
# File 'lib/fig/command/action/role/update.rb', line 9

def descriptor_requirement()
  return nil
end

#executeObject



46
47
48
49
# File 'lib/fig/command/action/role/update.rb', line 46

def execute()
  # Don't do anything.
  return Fig::Command::Action::EXIT_SUCCESS
end

#load_base_package?Boolean

Returns:

  • (Boolean)


22
23
24
# File 'lib/fig/command/action/role/update.rb', line 22

def load_base_package?()
  return true
end

#modifies_repository?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/fig/command/action/role/update.rb', line 18

def modifies_repository?()
  return true
end

#register_base_package?Boolean

Returns:

  • (Boolean)


26
27
28
# File 'lib/fig/command/action/role/update.rb', line 26

def register_base_package?()
  return true
end

#remote_operation_necessary?Boolean

Returns:

  • (Boolean)


42
43
44
# File 'lib/fig/command/action/role/update.rb', line 42

def remote_operation_necessary?()
  return true
end

#retrieves_should_happen?Boolean

Returns:

  • (Boolean)


38
39
40
# File 'lib/fig/command/action/role/update.rb', line 38

def retrieves_should_happen?()
  return true
end