-
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-6828) Fix Secondary Environment for TFTP server (#131)
Contents of linux-install/centos-7-x86_64 should be world readable SIMP-6828 #close
- Loading branch information
Showing
3 changed files
with
12 additions
and
2 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
%global gemdir /usr/share/simp/ruby | ||
%global geminstdir %{gemdir}/gems/%{gemname}-%{version} | ||
%global cli_version 5.0.0 | ||
%global cli_version 5.0.1 | ||
%global highline_version 1.7.8 | ||
|
||
# gem2ruby's method of installing gems into mocked build roots will blow up | ||
|
@@ -129,6 +129,11 @@ EOM | |
%doc %{gemdir}/doc | ||
|
||
%changelog | ||
* Thu Jul 11 2019 Michael Morrone <[email protected]> - 5.0.1 | ||
- Fixed a bug in which the tftpboot images copied into the rsync space in | ||
SIMP's secondary environment were not world readable. This prevented | ||
clients from PXE booting. | ||
|
||
* Tue Jun 11 2019 Chris Tessmer <[email protected]> - 5.0.0 | ||
- Added 'simp environment' command | ||
- Added `simp environment new` subcommand | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module Simp; end | ||
|
||
class Simp::Cli | ||
VERSION = '5.0.0' | ||
VERSION = '5.0.1' | ||
end |