chef-core 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +201 -0
- data/i18n/errors/en.yml +394 -0
- data/lib/chef_core/cliux/status_reporter.rb +43 -0
- data/lib/chef_core/cliux/ui/error_printer.rb +266 -0
- data/lib/chef_core/cliux/ui/plain_text_element.rb +80 -0
- data/lib/chef_core/cliux/ui/plain_text_header.rb +48 -0
- data/lib/chef_core/cliux/ui/terminal/job.rb +41 -0
- data/lib/chef_core/cliux/ui/terminal.rb +103 -0
- data/lib/chef_core/cliux.rb +7 -0
- data/lib/chef_core/error.rb +49 -0
- data/lib/chef_core/errors/standard_error_resolver.rb +38 -0
- data/lib/chef_core/file_fetcher.rb +67 -0
- data/lib/chef_core/log.rb +42 -0
- data/lib/chef_core/target_host/linux.rb +63 -0
- data/lib/chef_core/target_host/windows.rb +62 -0
- data/lib/chef_core/target_host.rb +351 -0
- data/lib/chef_core/target_resolver.rb +221 -0
- data/lib/chef_core/telemeter/patch.rb +32 -0
- data/lib/chef_core/telemeter/sender.rb +123 -0
- data/lib/chef_core/telemeter.rb +157 -0
- data/lib/chef_core/text/error_translation.rb +82 -0
- data/lib/chef_core/text/text_wrapper.rb +87 -0
- data/lib/chef_core/text.rb +79 -0
- data/lib/chef_core/version.rb +20 -0
- data/lib/chef_core.rb +3 -0
- data/resources/chef_run_reporter.rb +40 -0
- metadata +307 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1ad8d39463ec12c89e093da78fe4790cde28660b8014d1eaec546fcfcafb5887
|
4
|
+
data.tar.gz: 9083aa64d6567451495a598934335520b3c4b881e6c6980f74565297e702f1ad
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1d0e60b3f59e175a4abf57e1738d2c515eb002d5ff01b62f912fe672177e3e1974fe6603a3648c36f0578a449b8d3267f36cfb024c9ee8150ae895c3666eb390
|
7
|
+
data.tar.gz: a3abe193b54e8b06827ecd009cee4609f20af27652f0952af3fdf5b99192d9f3403f124704e7e3d8b9543136748f9e19e87cbc2c4dec6a576634532c1719b484
|
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/i18n/errors/en.yml
ADDED
@@ -0,0 +1,394 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2018 Chef Software Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
#
|
18
|
+
# Error definitions, usage Text.e.ERR999
|
19
|
+
#
|
20
|
+
# General format:
|
21
|
+
# ERRORID
|
22
|
+
# options: a stringified hash containing a optional hash of display options. See display_defaults below.
|
23
|
+
# text: |
|
24
|
+
# text of the message
|
25
|
+
#
|
26
|
+
# First Line: brief description of the error
|
27
|
+
# Second line: blank
|
28
|
+
# Third+ : detailed description, max 76 characters per line
|
29
|
+
|
30
|
+
# Pluralizing Messages
|
31
|
+
# If the text of an error differs based on quantity of subject,
|
32
|
+
# you can specify different messages as follows:
|
33
|
+
# ERRORID
|
34
|
+
# text: !!pl
|
35
|
+
# 0: You have no things.
|
36
|
+
# 1: You have one thing.
|
37
|
+
# n: You have lots of things.
|
38
|
+
# Text.ERRORID(quanity, [other formatting params])
|
39
|
+
|
40
|
+
errors:
|
41
|
+
|
42
|
+
# These are the default display attributes for all messages.
|
43
|
+
# If you want to override them in your gem or application,
|
44
|
+
# include 'errors' -> 'display_defaults' in your gem's i18n/errors/*.yml
|
45
|
+
# and enable it iwth Text.add_localization(path_to_yml)
|
46
|
+
# The most recent gem to add its own error translations will take precedence.
|
47
|
+
#
|
48
|
+
# If you want to override them for specific errors in your error yml,
|
49
|
+
# you can do so as follows:
|
50
|
+
# EXAMPLERROR001:
|
51
|
+
# options: { decorations: false }
|
52
|
+
# text: |
|
53
|
+
# Here is the message text.
|
54
|
+
display_defaults:
|
55
|
+
# Set 'decorations: false' in a message to show only text. Equivalent
|
56
|
+
# to setting all of the other attributes to false individually
|
57
|
+
# stack: show reference to stack trace location in footer
|
58
|
+
# log: show reference to log file location in footer
|
59
|
+
# header: Show error header (currently bolded error id)
|
60
|
+
# footer: show standard footer
|
61
|
+
#
|
62
|
+
# This (end error 'options') are kept as YML strings that are parsed when
|
63
|
+
# the error is to be rendered.
|
64
|
+
# Using a string type is necessary bedcause we don't have access to the
|
65
|
+
# underlying tree structure via R18n.
|
66
|
+
"{ decorations: true, stack: false, log: false, header: true, footer: true }"
|
67
|
+
|
68
|
+
|
69
|
+
# Error headers and footers that are included with error messages will default to the
|
70
|
+
# text below. You can override this in your gem's localization, but make sure
|
71
|
+
# that you don't add additional argument placeholders (eg %3 if the original message
|
72
|
+
# only has %1 and %2) - they won't be populated since chef_core doesn't know about them.
|
73
|
+
footer:
|
74
|
+
both: |
|
75
|
+
If you are not able to resolve this issue, please contact Chef support
|
76
|
+
at workstation@chef.io and include the log file and stack trace from the
|
77
|
+
locations below:
|
78
|
+
|
79
|
+
%1
|
80
|
+
%2
|
81
|
+
|
82
|
+
log_only: |
|
83
|
+
If you are not able to resolve this issue, please contact Chef support
|
84
|
+
at workstation@chef.io and include the log file from the location below:
|
85
|
+
%1
|
86
|
+
|
87
|
+
stack_only: |
|
88
|
+
If you are not able to resolve this issue, please contact Chef support
|
89
|
+
at workstation@chef.io and include the stack trace from the location below:
|
90
|
+
%1
|
91
|
+
|
92
|
+
neither: |
|
93
|
+
If you are not able to resolve this issue, please contact Chef support
|
94
|
+
at workstation@chef.io
|
95
|
+
|
96
|
+
#
|
97
|
+
# Below are the error text definitions for errors that chef_core will raise.
|
98
|
+
#
|
99
|
+
|
100
|
+
# Remote execution and file operation errors are prefixed CHEFRMT
|
101
|
+
CHEFRMT001:
|
102
|
+
text: |
|
103
|
+
The command '%1' exited with return code '%2' on '%3'.
|
104
|
+
|
105
|
+
The following error was reported:
|
106
|
+
|
107
|
+
%4
|
108
|
+
|
109
|
+
# Train-related errors (connectivity, auth failure, etc)
|
110
|
+
# are prefixed CHEFTRN. Non-specific descendants of Train::Error
|
111
|
+
# will resolve to CHEFTRN001, and we can add additional
|
112
|
+
# more specific text as we need it.
|
113
|
+
#
|
114
|
+
# TODO: Note that due to a temporary oddity in the split of chef-apply
|
115
|
+
# reusable components into the chef_core gems, chef_core itself
|
116
|
+
# has the definitions for CHEFTRN003+ - that's where the associated
|
117
|
+
# exceptions get thrown.
|
118
|
+
CHEFTRN001:
|
119
|
+
text: |
|
120
|
+
An error has occurred on the %1 connection to %2:
|
121
|
+
|
122
|
+
%2.
|
123
|
+
|
124
|
+
CHEFTRN002:
|
125
|
+
text: |
|
126
|
+
An remote error has occurred:
|
127
|
+
|
128
|
+
%1.
|
129
|
+
# Train-related errors (connectivity, auth failure, etc)
|
130
|
+
# are prefixed CHEFTRN. Note that due to the gem split,
|
131
|
+
# some renumbering would make sense - CHEFTRN001 and 2
|
132
|
+
# now live in chef_core-actions
|
133
|
+
CHEFTRN003:
|
134
|
+
text: |
|
135
|
+
Password required for sudo.
|
136
|
+
|
137
|
+
This target requires a password to perform sudo operations. Please provide a
|
138
|
+
password using the --sudo-password option. For example if the sudo password is
|
139
|
+
in the environment variable $CHEF_RUN_SUDO_PASSWORD, you could use:
|
140
|
+
|
141
|
+
--sudo-password $CHEF_RUN_SUDO_PASSWORD
|
142
|
+
|
143
|
+
CHEFTRN004:
|
144
|
+
text: |
|
145
|
+
Incorrect sudo password provided.
|
146
|
+
|
147
|
+
Please ensure that the password you provided with "--sudo-password" is correct.
|
148
|
+
|
149
|
+
CHEFTRN005:
|
150
|
+
text: |
|
151
|
+
sudo command '%1' not found.
|
152
|
+
|
153
|
+
Please verify that the --sudo-command '%1' is valid
|
154
|
+
and installed on this node.
|
155
|
+
|
156
|
+
CHEFTRN006:
|
157
|
+
text: |
|
158
|
+
sudo requires tty on this system
|
159
|
+
|
160
|
+
In order to continue, sudo must be configured to no longer require tty.
|
161
|
+
You can do this by modifying /etc/sudoers:
|
162
|
+
|
163
|
+
For all users:
|
164
|
+
Defaults !requiretty
|
165
|
+
|
166
|
+
Per-user:
|
167
|
+
Defaults:username !requiretty
|
168
|
+
|
169
|
+
CHEFTRN007:
|
170
|
+
text: |
|
171
|
+
No authentication methods available.
|
172
|
+
|
173
|
+
Try...
|
174
|
+
- Provide a password with "--password PASSWORD"
|
175
|
+
- Provide a key with "-identity-file PATH/TO/FILE"
|
176
|
+
- Enable ssh-agent and add keys
|
177
|
+
- Add a host entry to your ssh configuration
|
178
|
+
|
179
|
+
Additional instructions can be found in the troubleshooting documentation:
|
180
|
+
|
181
|
+
https://www.chef.sh/docs/chef-workstation/troubleshooting/#error-code-cheftrn007
|
182
|
+
|
183
|
+
CHEFTRN999:
|
184
|
+
text: |
|
185
|
+
Connection failed: %1
|
186
|
+
|
187
|
+
The following error occured while attempting to connect and authenticate to the target.
|
188
|
+
|
189
|
+
%1
|
190
|
+
|
191
|
+
|
192
|
+
# General errors/unknown errors are handled with CHEFINT
|
193
|
+
CHEFINT001:
|
194
|
+
options: "{ log: true, stack: true }"
|
195
|
+
text: |
|
196
|
+
An unexpected error has occurred:
|
197
|
+
|
198
|
+
%1
|
199
|
+
|
200
|
+
# Internal API errors - give them some formatting
|
201
|
+
CHEFAPI001:
|
202
|
+
options: "{ log: true, stack: true }"
|
203
|
+
text: |
|
204
|
+
API error: provide either :recipe_spec or :resouce_name, :resource_type,
|
205
|
+
and :resource_properties
|
206
|
+
|
207
|
+
You provided: %1
|
208
|
+
|
209
|
+
|
210
|
+
# Maps to: NameError
|
211
|
+
CHEFNET001:
|
212
|
+
text: |
|
213
|
+
A network error occurred:
|
214
|
+
|
215
|
+
%1
|
216
|
+
|
217
|
+
Please verify the host name or address is correct and that the host is
|
218
|
+
reachable before trying again.
|
219
|
+
|
220
|
+
# Remote chef client run failure start here.
|
221
|
+
CHEFUPL003:
|
222
|
+
options: "{ log: true, stack: true }"
|
223
|
+
text: |
|
224
|
+
Uploading config to target failed.
|
225
|
+
|
226
|
+
CHEFUPL004:
|
227
|
+
options: "{ log: true, stack: true }"
|
228
|
+
text: |
|
229
|
+
Uploading handler to target failed.
|
230
|
+
|
231
|
+
CHEFUPL005:
|
232
|
+
options: "{ log: true, stack: true }"
|
233
|
+
text: |
|
234
|
+
Uploading policy bundle to target failed.
|
235
|
+
|
236
|
+
# Maps to: SSL::SSLError with message text indicating verification failure
|
237
|
+
CHEFNET002:
|
238
|
+
text: |
|
239
|
+
SSL host verification failed.
|
240
|
+
|
241
|
+
I could not verify the identity of the remote host.
|
242
|
+
|
243
|
+
If you are certain that you are connecting to the correct host,
|
244
|
+
you can specify the '--no-ssl-verify' option for this command, or
|
245
|
+
make it the default by setting the following in your configuration:
|
246
|
+
|
247
|
+
[connection.winrm]
|
248
|
+
ssl_verify=false
|
249
|
+
|
250
|
+
# Catch-all error when marshalling mulitple parallel failures.
|
251
|
+
CHEFMULTI001:
|
252
|
+
text: |
|
253
|
+
One or more actions has failed.
|
254
|
+
|
255
|
+
A complete list of failures and possible resolutions can
|
256
|
+
be found in the file below:
|
257
|
+
|
258
|
+
%
|
259
|
+
|
260
|
+
# Errors relating to target host state:
|
261
|
+
CHEFTARG001:
|
262
|
+
text: |
|
263
|
+
'%1' is not a supported target operating system at this time.
|
264
|
+
|
265
|
+
We plan to support a range of target operating systems,
|
266
|
+
but during this targeted beta we are constraining our efforts
|
267
|
+
to Windows and Linux.
|
268
|
+
|
269
|
+
# Errors specifying ranges for host names.
|
270
|
+
CHEFRANGE001: |
|
271
|
+
text: |
|
272
|
+
The target '%1' contains an invalid range.
|
273
|
+
|
274
|
+
The range '%2' mixes alphabetic and numeric values.
|
275
|
+
A range must be one or the other.
|
276
|
+
|
277
|
+
CHEFRANGE002:
|
278
|
+
text: |
|
279
|
+
The target '%1' contains too many ranges.
|
280
|
+
|
281
|
+
A single target name can contain up two ranges.
|
282
|
+
|
283
|
+
CHEFRANGE003:
|
284
|
+
text: !!pl
|
285
|
+
1:
|
286
|
+
The target provided resolves to too many hosts.
|
287
|
+
|
288
|
+
At this time there is a limit of %2 hosts in a single operation.
|
289
|
+
n:
|
290
|
+
The targets provided resolve to too many hosts.
|
291
|
+
|
292
|
+
At this time there is a limit of %2 hosts in a single operation.
|
293
|
+
|
294
|
+
CHEFVAL011:
|
295
|
+
display: " { decorations: false } "
|
296
|
+
text: |
|
297
|
+
The protocol '%1' is not supported.
|
298
|
+
|
299
|
+
Currently supported remote access protocols are:
|
300
|
+
|
301
|
+
%2
|
302
|
+
|
303
|
+
# Installer action errors
|
304
|
+
CHEFINS002:
|
305
|
+
text: |
|
306
|
+
The target does not have chef-client installed.
|
307
|
+
|
308
|
+
This command is powered by the Chef client. In order to make use of it
|
309
|
+
on this node, the Chef client must be installed first.
|
310
|
+
|
311
|
+
Re-running this command without the '--no-install' flag will
|
312
|
+
automatically perform the installation.
|
313
|
+
|
314
|
+
CHEFINS003:
|
315
|
+
text: |
|
316
|
+
The target has an older version of Chef client installed.
|
317
|
+
|
318
|
+
The target has version %1 installed, but this command
|
319
|
+
requires a minimum version of %2.
|
320
|
+
|
321
|
+
Please upgrade the Chef client on this node to version %2 or later.
|
322
|
+
|
323
|
+
CHEFINS004: |
|
324
|
+
The target's installed version of Chef Client is too old.
|
325
|
+
|
326
|
+
Version %1 is installed, but this command requires a
|
327
|
+
minimum version of %2.
|
328
|
+
|
329
|
+
|
330
|
+
# Remote chef client run failure start here.
|
331
|
+
CHEFCCR001:
|
332
|
+
text: |
|
333
|
+
Could not determine reason for converge failure.
|
334
|
+
|
335
|
+
An error occurred while converging the remote host.
|
336
|
+
I was unable to retrieve the log file which would allow
|
337
|
+
me to provide more information. Here's where I looked:
|
338
|
+
|
339
|
+
%1
|
340
|
+
|
341
|
+
CHEFCCR002:
|
342
|
+
text: |
|
343
|
+
The converge of the remote host failed for the
|
344
|
+
following reason:
|
345
|
+
|
346
|
+
%1
|
347
|
+
|
348
|
+
CHEFCCR003:
|
349
|
+
text: |
|
350
|
+
The action '%1' is not valid.
|
351
|
+
|
352
|
+
Valid actions are:
|
353
|
+
|
354
|
+
%2
|
355
|
+
|
356
|
+
For more information, please consult the documentation
|
357
|
+
for this resource:
|
358
|
+
|
359
|
+
https://docs.chef.io/resource_reference.html
|
360
|
+
|
361
|
+
CHEFCCR004:
|
362
|
+
text: |
|
363
|
+
A property value you provided is not valid:
|
364
|
+
|
365
|
+
%1
|
366
|
+
|
367
|
+
Please consult the documentation for properties
|
368
|
+
supported by your resource and their valid values:
|
369
|
+
|
370
|
+
https://docs.chef.io/resource_reference.html
|
371
|
+
|
372
|
+
CHEFCCR005:
|
373
|
+
text: |
|
374
|
+
'%1' is not a valid Chef resource.
|
375
|
+
|
376
|
+
Please consult the documentation for a list of valid resources:
|
377
|
+
|
378
|
+
https://docs.chef.io/resource_reference.html
|
379
|
+
|
380
|
+
CHEFCCR006:
|
381
|
+
text: |
|
382
|
+
'%1' is not a property of '%2'.
|
383
|
+
|
384
|
+
Please consult the documentation for %2 for a list of
|
385
|
+
valid properties:
|
386
|
+
|
387
|
+
https://docs.chef.io/resource_reference.html
|
388
|
+
|
389
|
+
CHEFCCR099:
|
390
|
+
text: |
|
391
|
+
The converge of the remote host failed.
|
392
|
+
|
393
|
+
Please examine the log file for a detailed cause of failure.
|
394
|
+
|
@@ -0,0 +1,43 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2017 Chef Software Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
module ChefCore
|
19
|
+
module CLIUX
|
20
|
+
class StatusReporter
|
21
|
+
|
22
|
+
def initialize(ui_element, prefix: nil, key: nil)
|
23
|
+
@ui_element = ui_element
|
24
|
+
@key = key
|
25
|
+
@ui_element.update(prefix: prefix)
|
26
|
+
end
|
27
|
+
|
28
|
+
def update(msg)
|
29
|
+
@ui_element.update({ @key => msg })
|
30
|
+
end
|
31
|
+
|
32
|
+
def success(msg)
|
33
|
+
update(msg)
|
34
|
+
@ui_element.success
|
35
|
+
end
|
36
|
+
|
37
|
+
def error(msg)
|
38
|
+
update(msg)
|
39
|
+
@ui_element.error
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|