forked from puppetlabs/puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'PUP-2478/3.6.1/security_fixes' into stable
* PUP-2478/3.6.1/security_fixes: (PUP-2683) Fix fact terminus to load facts without '.' on the load path. (packaging) Update PUPPETVERSION to 3.6.2 (PUP-2533) Insert SSLCARevocationCheck on upgrade (maint) extract initial Passenger configuration (PUP-2533) Apache 2.4 requires explicit CRL configuration (PUP-2478) Remove current directory from Ruby load path.
- Loading branch information
Showing
5 changed files
with
102 additions
and
44 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 |
---|---|---|
@@ -1,4 +1,8 @@ | ||
#!/usr/bin/env ruby | ||
|
||
# For security reasons, ensure that '.' is not on the load path | ||
# This is primarily for 1.8.7 since 1.9.2+ doesn't put '.' on the load path | ||
$LOAD_PATH.delete '.' | ||
|
||
require 'puppet/util/command_line' | ||
Puppet::Util::CommandLine.new.execute |
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