Sha256: 0485ce30e0d867d4c8fc0922f280e4ad35ce394f59faf9defc548ff59ff13741

Contents?: true

Size: 1.5 KB

Versions: 33

Compression:

Stored size: 1.5 KB

Contents

# frozen_string_literal: true

require 'bolt/error'

# Removes a target from the specified inventory group.
#
# The target is removed from all child groups and all parent groups where the target has
# not been explicitly defined. A target cannot be removed from the `all` group.
#
# > **Note:** Not available in apply block
Puppet::Functions.create_function(:remove_from_group) do
  # @param target A pattern identifying a single target.
  # @param group The name of the group to remove the target from.
  # @return [nil]
  # @example Remove Target from group.
  #   remove_from_group('foo@example.com', 'group1')
  # @example Remove failing Targets from the rest of a plan
  #   $result = run_command(uptime, my_group, '_catch_errors' => true)
  #   $result.error_set.targets.each |$t| { remove_from_group($t, my_group) }
  #   run_command(next_command, my_group) # does not target the failing nodes.
  dispatch :remove_from_group do
    param 'Boltlib::TargetSpec', :target
    param 'String[1]', :group
  end

  def remove_from_group(target, group)
    unless Puppet[:tasks]
      raise Puppet::ParseErrorWithIssue
        .from_issue_and_stack(Bolt::PAL::Issues::PLAN_OPERATION_NOT_SUPPORTED_WHEN_COMPILING,
                              action: 'remove_from_group')
    end

    inventory = Puppet.lookup(:bolt_inventory)
    executor = Puppet.lookup(:bolt_executor)
    # Send Analytics Report
    executor.report_function_call(self.class.name)

    inventory.remove_from_group(inventory.get_targets(target), group)
  end
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
bolt-4.0.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.29.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.28.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.27.4 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.27.2 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.27.1 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.26.2 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.26.1 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.25.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.24.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.23.1 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.23.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.22.1 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.22.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.21.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.20.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.19.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.18.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.17.0 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
bolt-3.16.1 bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb