-
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-8383) simp cli uses wrong local sssd domain (#151)
- Fixed a bug where 'simp config' recommended the wrong SSSD domain, when the SIMP server was not the LDAP server. It recommended the 'Local' domain, when the appropriate SIMP-created domain with the 'local' (EL6) or 'files' (EL7) provider is 'LOCAL'. - Fixed bad changelog entry. - Cleaned up a few unit tests - Mocked out a `hostname` system call in a spec test, instead of expecting the actual `hostname` operation to fail. - Mocked out File.exist?('/etc/yum.repos.d/simp_filesystem.repo') calls instead of assuming it will always return false. - Mocked out 'chown -R root:apache ...' system calls in spec tests. - Removed extraneous tests that were failing because of 'chown -R root:apache' failures, instead of what the test was hoping to test. I didn't bother to fix the tests with mock behavior, because the error paths were adequately tested in other tests. - Skip a test that was marked pending but still attempted to execute actions on the local system. - Set ssh keepalive settings in acceptance tests, to attempt to solve random ssh connection closures on slow GitLab servers. - Unpinned version of beaker, as desired capabilities have now been released. SIMP-8383 #close
- Loading branch information
1 parent
bfdccbc
commit eccd8f6
Showing
11 changed files
with
100 additions
and
90 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
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 6.0.2 | ||
%global cli_version 6.0.3 | ||
%global highline_version 2.0.3 | ||
|
||
# gem2ruby's method of installing gems into mocked build roots will blow up | ||
|
@@ -129,6 +129,12 @@ EOM | |
%doc %{gemdir}/doc | ||
|
||
%changelog | ||
* Tue Sep 30 2020 Liz Nemsick <[email protected]> - 6.0.3 | ||
- Fixed a bug where 'simp config' recommended the wrong SSSD domain, | ||
when the SIMP server was not the LDAP server. It recommended the | ||
'Local' domain, when the appropriate SIMP-created domain with the | ||
'local' (EL6) or 'files' (EL7) provider is 'LOCAL'. | ||
|
||
* Thu Sep 10 2020 Liz Nemsick <[email protected]> - 6.0.2 | ||
- Fixed a typo in an error message emitted when 'simp config' cannot | ||
proceed because the environment to configure already exists. | ||
|
@@ -177,7 +183,6 @@ EOM | |
- '--[no-]complex-only': Whether to only use only complex characters | ||
when a password is auto-generated. Corresponds to the complex_only | ||
option of simplib::passgen. | ||
key/value store. | ||
- '--[no-]validate': Enabled validation of new passwords with | ||
libpwquality/cracklib. | ||
- '--length': Password length to use when a password is auto-generated. | ||
|
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 = '6.0.2' | ||
VERSION = '6.0.3' | ||
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
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
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
Oops, something went wrong.