Jira (BOLT-1535) Error with bolt when running Concat module against windows machines

19 views
Skip to first unread message

David Swan (JIRA)

unread,
Jan 30, 2020, 4:37:04 AM1/30/20
to puppe...@googlegroups.com
David Swan created an issue
 
Puppet Task Runner / Task BOLT-1535
Error with bolt when running Concat module against windows machines
Issue Type: Task Task
Assignee: Unassigned
Attachments: Screen Shot 2020-01-29 at 4.33.58 PM.png, Screen Shot 2020-01-29 at 4.34.19 PM.png, Screen Shot 2020-01-29 at 4.36.25 PM.png
Created: 2020/01/30 1:36 AM
Priority: Normal Normal
Reporter: David Swan

We have recently been seeing an error appear whenever we apply certain manifests on a windows machine via Bolt. Originally we felt that this may be originating from a puppet agent change however we now feel that it is likely originating from bolt, more information on the investigations into Puppet Agent can be found in https://tickets.puppetlabs.com/browse/PA-3065.
 
I have made multiple applications of a select manifest against the windows machines using bolt via litmus, bolt directly and through logging onto the machine and applying it manually. When applying the manifest via bolt in either way the result is an exit code of 1, while applying it manually gives an exit code of 0. I have attached screenshots of the results of each run onto this
ticket and will paste the output below:
 
When run locally
 

Administrator@wooden-debacle /cygdrive/c/tmp $ '../Program Files/Puppet Labs/Puppet/bin/puppet.bat' apply /tmp/manifest_20200129_56833_19lr8ku.pp --detailed-exitcodes Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.11 seconds Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. Notice: Applied catalog in 0.02 secondsAdministrator@wooden-debacle /cygdrive/c/tmp $ echo $? 0

 
 
When run via litmus
 

1) force merge of file when run should not force applies manifest twice with stderr check On host `wooden-debacle.delivery.puppetlabs.net' Failure/Error: expect(apply_manifest(pp, catch_failures: true).stderr).to match("Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys.") RuntimeError: apply manifest failed ` puppet apply /tmp/manifest_20200129_56833_cptso6.pp --detailed-exitcodes` with exit code 1 (expected: [0, 2]) ====== Start output of failed Puppet apply ====== puppet.bat : Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. + CategoryInfo : NotSpecified: (Error: /...merge keys.:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.10 seconds Notice: Applied catalog in 0.02 seconds ====== End output of failed Puppet apply ====== # ./.bundle/gems/ruby/2.5.0/gems/puppet_litmus-0.14.0/lib/puppet_litmus/puppet_helpers.rb:278:in `report_puppet_apply_error' # ./.bundle/gems/ruby/2.5.0/gems/puppet_litmus-0.14.0/lib/puppet_litmus/puppet_helpers.rb:79:in `apply_manifest' # ./spec/acceptance/force_spec.rb:29:in `block (3 levels) in <top (required)>'

 
 
When run via bolt
 

➜ puppetlabs-concat git:(master) ✗ bundle exec bolt command run "puppet apply /tmp/manifest_20200129_56833_19lr8ku.pp --detailed-exitcodes" --targets 'wooden-debacle.delivery.puppetlabs.net' --transport winrm --user Administrator --password Qu@lity! --no-ssl-verify Deprecation Warning: Starting with Bolt 2.0, inventory file v1 will no longer be supported. v1 inventory files can be automatically migrated to v2 using 'bolt project migrate'. Inventory files are modified in place and will not preserve formatting or comments.CLI arguments ["user", "password", "ssl-verify", "transport"] may be overridden by Inventory: /Users/david.swan/.puppetlabs/bolt/inventory.yaml Started on wooden-debacle.delivery.puppetlabs.net... Failed on wooden-debacle.delivery.puppetlabs.net: The command failed with exit code 1 STDOUT: Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.11 seconds Notice: Applied catalog in 0.02 seconds STDERR: puppet.bat : Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. + CategoryInfo : NotSpecified: (Error: /...merge keys.:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Failed on 1 target: wooden-debacle.delivery.puppetlabs.net Ran on 1 target in 8.44 sec

 
 
This error originally presented on the concat module, and the results shown above are from the application of the first manifest in the concat modules `force_spec.rb` file.

Add Comment Add Comment
 
This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)
Atlassian logo

David Swan (JIRA)

unread,
Jan 30, 2020, 4:38:10 AM1/30/20
to puppe...@googlegroups.com
David Swan updated an issue
Change By: David Swan
We have recently been seeing an error appear whenever we apply certain manifests on a windows machine via Bolt. Originally we felt that this may be originating from a puppet agent change however we now feel that it is likely originating from bolt, more information on the investigations into Puppet Agent can be found in [https://tickets.puppetlabs.com/browse/PA-3065|https://cdn1.evernote.com/ion/dist/ce/].
 
I have made multiple applications of a select manifest against the windows machines using bolt via litmus, bolt directly and through logging onto the machine and applying it manually. When applying the manifest via bolt in either way the result is an exit code of 1, while applying it manually gives an exit code of 0. I have attached screenshots of the results of each run onto this
ticket and will paste the output below:
 
When run locally
 
{code:java}
Administrator@wooden-debacle /cygdrive/c/tmp $ '../Program Files/Puppet Labs/Puppet/bin/puppet.bat' apply /tmp/manifest_20200129_56833_19lr8ku.pp --detailed-exitcodes Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.11 seconds Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. Notice: Applied catalog in 0.02 secondsAdministrator@wooden-debacle /cygdrive/c/tmp $ echo $? 0{code}
 
 
When run via litmus
 
{code:java}
1) force merge of file when run should not force applies manifest twice with stderr check On host `wooden-debacle.delivery.puppetlabs.net' Failure/Error: expect(apply_manifest(pp, catch_failures: true).stderr).to match("Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys.") RuntimeError: apply manifest failed ` puppet apply /tmp/manifest_20200129_56833_cptso6.pp --detailed-exitcodes` with exit code 1 (expected: [0, 2]) ====== Start output of failed Puppet apply ====== puppet.bat : Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. + CategoryInfo : NotSpecified: (Error: /...merge keys.:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.10 seconds Notice: Applied catalog in 0.02 seconds ====== End output of failed Puppet apply ====== # ./.bundle/gems/ruby/2.5.0/gems/puppet_litmus-0.14.0/lib/puppet_litmus/puppet_helpers.rb:278:in `report_puppet_apply_error' # ./.bundle/gems/ruby/2.5.0/gems/puppet_litmus-0.14.0/lib/puppet_litmus/puppet_helpers.rb:79:in `apply_manifest' # ./spec/acceptance/force_spec.rb:29:in `block (3 levels) in <top (required)>'{code}
 
 
When run via bolt
 
{code:java}
➜ puppetlabs-concat git:(master) ✗ bundle exec bolt command run "puppet apply /tmp/manifest_20200129_56833_19lr8ku.pp --detailed-exitcodes" --targets 'wooden-debacle.delivery.puppetlabs.net' --transport winrm --user Administrator --password Qu@lity! --no-ssl-verify Deprecation Warning: Starting with Bolt 2.0, inventory file v1 will no longer be supported. v1 inventory files can be automatically migrated to v2 using 'bolt project migrate'. Inventory files are modified in place and will not preserve formatting or comments.CLI arguments ["user", "password", "ssl-verify", "transport"] may be overridden by Inventory: /Users/david.swan/.puppetlabs/bolt/inventory.yaml Started on wooden-debacle.delivery.puppetlabs.net... Failed on wooden-debacle.delivery.puppetlabs.net: The command failed with exit code 1 STDOUT: Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.11 seconds Notice: Applied catalog in 0.02 seconds STDERR: puppet.bat : Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. + CategoryInfo : NotSpecified: (Error: /...merge keys.:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Failed on 1 target: wooden-debacle.delivery.puppetlabs.net Ran on 1 target in 8.44 sec{code}
 
 
This error originally presented on the concat module, and the results shown above are from the application of the first manifest in the concat modules `force_spec.rb` file.

David Swan (JIRA)

unread,
Jan 30, 2020, 5:09:04 AM1/30/20
to puppe...@googlegroups.com
David Swan updated an issue
We have recently been seeing an error appear whenever we apply certain manifests on a windows machine via Bolt. Originally we felt that this may be originating from a puppet agent change however we now feel that it is likely originating from bolt, more information on the investigations into Puppet Agent can be found in [https://tickets.puppetlabs.com/browse/PA-3065|https://cdn1.evernote.com/ion/dist/ce/].
I have made multiple applications of a select manifest against the windows machines using bolt via litmus, bolt directly and through logging onto the machine and applying it manually. When applying the manifest via bolt in either way the result is an exit code of 1, while applying it manually gives an exit code of 0. I have attached screenshots of the results of each run onto this
ticket and will paste the output below:
 
When run locally
{code:java}

{code:ruby}
Administrator@wooden-debacle /cygdrive/c/tmp $ '../Program Files/Puppet Labs/Puppet/bin/puppet.bat' apply /tmp/manifest_20200129_56833_19lr8ku.pp --detailed-exitcodes Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.11 seconds Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. Notice: Applied catalog in 0.02 secondsAdministrator@wooden-debacle /cygdrive/c/tmp $ echo $? 0
{code}
 
When run via litmus
{code:java}1) force merge of file when run should not force applies manifest twice with stderr check On host `wooden-debacle.delivery.puppetlabs.net' Failure/Error: expect(apply_manifest(pp, catch_failures: true).stderr).to match("Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys.") RuntimeError: apply manifest failed ` puppet apply /tmp/manifest_20200129_56833_cptso6.pp --detailed-exitcodes` with exit code 1 (expected: [0, 2]) ====== Start output of failed Puppet apply ====== puppet.bat : Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. + CategoryInfo : NotSpecified: (Error: /...merge keys.:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.10 seconds Notice: Applied catalog in 0.02 seconds ====== End output of failed Puppet apply ====== # ./.bundle/gems/ruby/2.5.0/gems/puppet_litmus-0.14.0/lib/puppet_litmus/puppet_helpers.rb:278:in `report_puppet_apply_error' # ./.bundle/gems/ruby/2.5.0/gems/puppet_litmus-0.14.0/lib/puppet_litmus/puppet_helpers.rb:79:in `apply_manifest' # ./spec/acceptance/force_spec.rb:29:in `block (3 levels) in <top (required)>'{code}
 
When run via bolt
{code:java}➜ puppetlabs-concat git:(master) ✗ bundle exec bolt command run "puppet apply /tmp/manifest_20200129_56833_19lr8ku.pp --detailed-exitcodes" --targets 'wooden-debacle.delivery.puppetlabs.net' --transport winrm --user Administrator --password Qu@lity! --no-ssl-verify Deprecation Warning: Starting with Bolt 2.0, inventory file v1 will no longer be supported. v1 inventory files can be automatically migrated to v2 using 'bolt project migrate'. Inventory files are modified in place and will not preserve formatting or comments.CLI arguments ["user", "password", "ssl-verify", "transport"] may be overridden by Inventory: /Users/david.swan/.puppetlabs/bolt/inventory.yaml Started on wooden-debacle.delivery.puppetlabs.net... Failed on wooden-debacle.delivery.puppetlabs.net: The command failed with exit code 1 STDOUT: Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.11 seconds Notice: Applied catalog in 0.02 seconds STDERR: puppet.bat : Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. + CategoryInfo : NotSpecified: (Error: /...merge keys.:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Failed on 1 target: wooden-debacle.delivery.puppetlabs.net Ran on 1 target in 8.44 sec{code}
 
This error originally presented on the concat module, and the results shown above are from the application of the first manifest in the concat modules `force_spec.rb` file.

David Swan (JIRA)

unread,
Jan 30, 2020, 5:09:05 AM1/30/20
to puppe...@googlegroups.com
David Swan updated an issue
We have recently been seeing an error appear whenever we apply certain manifests on a windows machine via Bolt. Originally we felt that this may be originating from a puppet agent change however we now feel that it is likely originating from bolt, more information on the investigations into Puppet Agent can be found in [https://tickets.puppetlabs.com/browse/PA-3065|https://cdn1.evernote.com/ion/dist/ce/].
I have made multiple applications of a select manifest against the windows machines using bolt via litmus, bolt directly and through logging onto the machine and applying it manually. When applying the manifest via bolt in either way the result is an exit code of 1, while applying it manually gives an exit code of 0. I have attached screenshots of the results of each run onto this
ticket and will paste the output below:
 
When run locally
{ code:java noformat }
{code:ruby}
Administrator@wooden-debacle /cygdrive/c/tmp $ '../Program Files/Puppet Labs/Puppet/bin/puppet.bat' apply /tmp/manifest_20200129_56833_19lr8ku.pp --detailed-exitcodes
Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.11 seconds
Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. Notice: Applied catalog in 0.02 secondsAdministrator@wooden-debacle /cygdrive/c/tmp $ echo $? 0
{ code noformat }

When run via litmus
{code:java}1) force merge of file when run should not force applies manifest twice with stderr check On host `wooden-debacle.delivery.puppetlabs.net' Failure/Error: expect(apply_manifest(pp, catch_failures: true).stderr).to match("Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys.") RuntimeError: apply manifest failed ` puppet apply /tmp/manifest_20200129_56833_cptso6.pp --detailed-exitcodes` with exit code 1 (expected: [0, 2]) ====== Start output of failed Puppet apply ====== puppet.bat : Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. + CategoryInfo : NotSpecified: (Error: /...merge keys.:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.10 seconds Notice: Applied catalog in 0.02 seconds ====== End output of failed Puppet apply ====== # ./.bundle/gems/ruby/2.5.0/gems/puppet_litmus-0.14.0/lib/puppet_litmus/puppet_helpers.rb:278:in `report_puppet_apply_error' # ./.bundle/gems/ruby/2.5.0/gems/puppet_litmus-0.14.0/lib/puppet_litmus/puppet_helpers.rb:79:in `apply_manifest' # ./spec/acceptance/force_spec.rb:29:in `block (3 levels) in <top (required)>'{code}
 
When run via bolt
{code:java}➜ puppetlabs-concat git:(master) ✗ bundle exec bolt command run "puppet apply /tmp/manifest_20200129_56833_19lr8ku.pp --detailed-exitcodes" --targets 'wooden-debacle.delivery.puppetlabs.net' --transport winrm --user Administrator --password Qu@lity! --no-ssl-verify Deprecation Warning: Starting with Bolt 2.0, inventory file v1 will no longer be supported. v1 inventory files can be automatically migrated to v2 using 'bolt project migrate'. Inventory files are modified in place and will not preserve formatting or comments.CLI arguments ["user", "password", "ssl-verify", "transport"] may be overridden by Inventory: /Users/david.swan/.puppetlabs/bolt/inventory.yaml Started on wooden-debacle.delivery.puppetlabs.net... Failed on wooden-debacle.delivery.puppetlabs.net: The command failed with exit code 1 STDOUT: Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.11 seconds Notice: Applied catalog in 0.02 seconds STDERR: puppet.bat : Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys. + CategoryInfo : NotSpecified: (Error: /...merge keys.:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Failed on 1 target: wooden-debacle.delivery.puppetlabs.net Ran on 1 target in 8.44 sec{code}
 
This error originally presented on the concat module, and the results shown above are from the application of the first manifest in the concat modules `force_spec.rb` file.

David Swan (JIRA)

unread,
Jan 30, 2020, 5:11:04 AM1/30/20
to puppe...@googlegroups.com
David Swan updated an issue
We have recently been seeing an error appear whenever we apply certain manifests on a windows machine via Bolt. Originally we felt that this may be originating from a puppet agent change however we now feel that it is likely originating from bolt, more information on the investigations into Puppet Agent can be found in [https://tickets.puppetlabs.com/browse/PA-3065|https://cdn1.evernote.com/ion/dist/ce/].
I have made multiple applications of a select manifest against the windows machines using bolt via litmus, bolt directly and through logging onto the machine and applying it manually. When applying the manifest via bolt in either way the result is an exit code of 1, while applying it manually gives an exit code of 0. I have attached screenshots of the results of each run onto this
ticket and will paste the output below:
 
When run locally
{noformat}
Administrator@wooden-debacle /cygdrive/c/tmp

$ '../Program Files/Puppet Labs/Puppet/bin/puppet.bat' apply /tmp/manifest_20200129_56833_19lr8ku.pp --detailed-exitcodes

Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.11 seconds

Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys.
Notice: Applied catalog in 0.02 secondsAdministrator@wooden-debacle /cygdrive/c/tmp
$ echo $?
0{noformat}
When run via litmus
{
code:java noformat }
1) force merge of file when run should not force applies manifest twice with stderr check
On host `wooden-debacle.delivery.puppetlabs.net'
Failure/Error: expect(apply_manifest(pp, catch_failures: true).stderr).to match("Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys.")
RuntimeError:
apply manifest failed
` puppet apply /tmp/manifest_20200129_56833_cptso6.pp --detailed-exitcodes`
with exit code 1 (expected: [0, 2])
====== Start output of failed Puppet apply ======
puppet.bat : Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys.
+ CategoryInfo : NotSpecified: (Error: /...merge keys.:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.10 seconds
Notice: Applied catalog in 0.02 seconds ====== End output of failed Puppet apply ====== # ./.bundle/gems/ruby/2.5.0/gems/puppet_litmus-0.14.0/lib/puppet_litmus/puppet_helpers.rb:278:in `report_puppet_apply_error'
# ./.bundle/gems/ruby/2.5.0/gems/puppet_litmus-0.14.0/lib/puppet_litmus/puppet_helpers.rb:79:in `apply_manifest'
# ./spec/acceptance/force_spec.rb:29:in `block (3 levels) in <top (required)>'{ code noformat }
 
When run via bolt
{
code:java noformat }
➜ puppetlabs-concat git:(master) ✗ bundle exec bolt command run "puppet apply /tmp/manifest_20200129_56833_19lr8ku.pp --detailed-exitcodes" --targets 'wooden-debacle.delivery.puppetlabs.net' --transport winrm --user Administrator --password Qu@lity! --no-ssl-verify
Deprecation Warning: Starting with Bolt 2.0, inventory file v1 will no longer
be supported. v1 inventory files can be automatically migrated to v2 using
'bolt project migrate'. Inventory files are modified in place and will not
preserve formatting or comments.CLI arguments ["user", "password", "ssl-verify", "transport"] may be overridden by Inventory: /Users/david.swan/.puppetlabs/bolt/inventory.yaml
Started on wooden-debacle.delivery.puppetlabs.net...
Failed on wooden-debacle.delivery.puppetlabs.net:
The command failed with exit code 1
STDOUT:
Notice: Compiled catalog for wooden-debacle.delivery.puppetlabs.net in environment production in 0.11 seconds
Notice: Applied catalog in 0.02 seconds
STDERR:
puppet.bat : Error: /Stage[main]/Main/Concat[c:/concat_test/file]/Concat_file[c:/concat_test/file]: Failed to generate additional resources using 'eval_generate': Duplicate key 'one' found with values 'foo' and bar'. Use 'force' attribute to merge keys.
+ CategoryInfo : NotSpecified: (Error: /...merge keys.:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
Failed on 1 target: wooden-debacle.delivery.puppetlabs.net
Ran on 1 target in 8.44 sec{ code noformat }
 
This error originally presented on the concat module, and the results shown above are from the application of the first manifest in the concat modules `force_spec.rb` file.

David Schmitt (JIRA)

unread,
Jan 30, 2020, 5:13:03 AM1/30/20
to puppe...@googlegroups.com

Norman Heaney (JIRA)

unread,
Feb 27, 2020, 3:34:04 AM2/27/20
to puppe...@googlegroups.com
Change By: Norman Heaney
Method Found: Needs Assessment
Issue Type: Task Bug

Glenn Sarti (Jira)

unread,
Mar 2, 2020, 10:30:03 PM3/2/20
to puppe...@googlegroups.com
Glenn Sarti commented on Bug BOLT-1535
 
Re: Error with bolt when running Concat module against windows machines

David Swan I'm curious what would happen if you ran that in a proper windows shell as opposed to running in Cygwin. Cygwin does some "weird" stuff sometimes. Although I see that raw Bolt has a similar problem which is not using cygwin (PowerShell remoting) so I suspect it's similar.

This message was sent by Atlassian Jira (v8.5.2#805002-sha1:a66f935)
Atlassian logo

Glenn Sarti (Jira)

unread,
Mar 2, 2020, 10:39:03 PM3/2/20
to puppe...@googlegroups.com
Glenn Sarti commented on Bug BOLT-1535

Have you got the raw manifest you're trying to apply? as point of reference

Glenn Sarti (Jira)

unread,
Mar 2, 2020, 10:49:04 PM3/2/20
to puppe...@googlegroups.com
Glenn Sarti commented on Bug BOLT-1535

Also David Swan I believe the bolt team now use GitHub Issues, not this Jira project.

FYI - Lucy Wyman Lucy Wyman Lucy Wyman (Why are you here three times?) and Alex Dreyer

Norman Heaney (Jira)

unread,
Mar 4, 2020, 8:58:03 AM3/4/20
to puppe...@googlegroups.com

raise https://github.com/puppetlabs/bolt/issues/1650 Error with bolt when running Concat module against windows machines #1650

Reply all
Reply to author
Forward
0 new messages