-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(SIMP-4076) Ensure that puppet code is valid (#86)
* Prior to bootstrap, we now ensure that the site.pp and site module code is valid so that we don't have confusing delays after waiting for multiple failing Puppet runs. * Clarified the message when bootstrap is locked * Ensured that backtraces are not displayed to the user on a known failure case SIMP-4550 #close SIMP-4551 #comment Ready for test SIMP-4036 #close
- Loading branch information
1 parent
05933e0
commit ee69ecf
Showing
6 changed files
with
71 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,6 +100,14 @@ EOM | |
%doc %{gemdir}/doc | ||
|
||
%changelog | ||
* Fri Mar 16 2018 Trevor Vaughan <[email protected]> - 4.0.5 | ||
- Prior to bootstrap, we now ensure that the site.pp and site module | ||
code is valid so that we don't have confusing delays after waiting for | ||
multiple failing Puppet runs. | ||
- Clarified the message when bootstrap is locked | ||
- Ensured that backtraces are not displayed to the user on known | ||
bootstrap failure cases | ||
|
||
* Mon Mar 12 2018 Liz Nemsick <[email protected]> - 4.0.5 | ||
- Set the ownership and permissions of files generated by simp cli, | ||
instead of allowing them to be set to those of the root user. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module Simp; end | ||
|
||
class Simp::Cli | ||
# Any command processing error that terminates the command | ||
# operation but for which a backtrace is not required | ||
class ProcessingError < StandardError; end | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters