-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathadd_to_group.rb
More file actions
38 lines (33 loc) · 1.39 KB
/
add_to_group.rb
File metadata and controls
38 lines (33 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true
require 'bolt/error'
# Adds a target to specified inventory group.
#
# > **Note:** Not available in apply block
Puppet::Functions.create_function(:add_to_group) do
# @param targets A pattern or array of patterns identifying a set of targets.
# @param group The name of the group to add targets to.
# @return [Array[Target]] The targets.
# @example Add new Target to group.
# Target.new('foo@example.com', 'password' => 'secret').add_to_group('group1')
# @example Add new target to group by name.
# add_to_group('bolt:bolt@web.com', 'group1')
# @example Add an array of targets to group by name.
# add_to_group(['host1', 'group1', 'winrm://host2:54321'], 'group1')
# @example Add a comma separated list list of targets to group by name.
# add_to_group('foo,bar,baz', 'group1')
dispatch :add_to_group do
param 'Boltlib::TargetSpec', :targets
param 'String[1]', :group
end
def add_to_group(targets, group)
unless Puppet[:tasks]
raise Puppet::ParseErrorWithIssue
.from_issue_and_stack(Bolt::PAL::Issues::PLAN_OPERATION_NOT_SUPPORTED_WHEN_COMPILING, action: 'add_to_group')
end
inventory = Puppet.lookup(:bolt_inventory)
executor = Puppet.lookup(:bolt_executor)
# Send Analytics Report
executor.report_function_call(self.class.name)
inventory.add_to_group(inventory.get_targets(targets), group)
end
end