mirror of
https://github.com/ovh/the-bastion.git
synced 2025-01-01 13:01:53 +08:00
bump to v3.01.02
This commit is contained in:
parent
3031b6ff0c
commit
a3b2b7d8e4
3 changed files with 22 additions and 11 deletions
|
@ -1,3 +1,9 @@
|
|||
## v3.01.02 - 2020/12/08
|
||||
- fix: is_valid_remote_user: extend allowed size from 32 to 128
|
||||
- feat: add support for CentOS 8.3
|
||||
- doc: bastion.conf.dist: accountMFAPolicy wrong options values in comment
|
||||
- chore: tests: now test the 3 more recent minor versions of CentOS 7 and CentOS 8
|
||||
|
||||
## v3.01.01 - 2020/12/04
|
||||
- fix: interactive mode: mark non-printable chars as such to avoid readline quirks
|
||||
- fix: osh-encrypt-rsync: remove 'logfile' as mandatory parameter
|
||||
|
|
|
@ -24,25 +24,30 @@ Note that if you're using an infrastructure automation tool such as Puppet, Ansi
|
|||
Version-specific upgrade instructions
|
||||
=====================================
|
||||
|
||||
v3.01.01
|
||||
********
|
||||
v3.01.02 - 2020/12/08
|
||||
*********************
|
||||
|
||||
No specific upgrade instructions.
|
||||
|
||||
v3.01.00
|
||||
********
|
||||
v3.01.01 - 2020/12/04
|
||||
*********************
|
||||
|
||||
No specific upgrade instructions.
|
||||
|
||||
v3.01.00 - 2020/11/20
|
||||
*********************
|
||||
|
||||
A new bastion.conf option was introduced: *interactiveModeByDefault*. If not present in your config file, its value defaults to 1 (true), which changes the behavior of The Bastion when a user connects without specifying any command. When this happens, it'll now display the help then drop the user into interactive mode (if this mode is enabled), instead of displaying the help and aborting with an error message. Set it to 0 (false) if you want to keep the previous behavior.
|
||||
|
||||
An SELinux module has been added in this version, to ensure TOTP MFA works correctly under systems where SELinux is on enforcing mode. This module will be installed automatically whenever SELinux is detected on the system. If you don't want to use this module, specify `--no-install-selinux-module` on your `/opt/bastion/bin/admin/install` upgrade call (please refer to the generic upgrade instructions for more details).
|
||||
|
||||
v3.00.02
|
||||
********
|
||||
v3.00.02 - 2020/11/16
|
||||
*********************
|
||||
|
||||
No specific upgrade instructions.
|
||||
|
||||
v3.00.01
|
||||
********
|
||||
v3.00.01 - 2020/11/06
|
||||
*********************
|
||||
|
||||
If you previously installed ``ttyrec`` using the now deprecated ``build-and-install-ttyrec.sh`` script, you might want to know that since this version, the script has been replaced by ``install-ttyrec.sh``, which no longer builds in-place, but prefers downloading and installing prebuild ``rpm`` or ``deb`` packages.
|
||||
|
||||
|
@ -51,7 +56,7 @@ If you previously built and installed ``ttyrec`` manually, and want to use the n
|
|||
This is not mandatory and doesn't change anything from the software point of view.
|
||||
|
||||
|
||||
v3.00.00
|
||||
********
|
||||
v3.00.00 - 2020/10/30
|
||||
*********************
|
||||
|
||||
Initial public version, no specific upgrade instructions.
|
||||
|
|
|
@ -5,7 +5,7 @@ use common::sense;
|
|||
use Fcntl;
|
||||
use POSIX qw(strftime);
|
||||
|
||||
our $VERSION = '3.01.01';
|
||||
our $VERSION = '3.01.02';
|
||||
|
||||
BEGIN {
|
||||
# only used by the handler below
|
||||
|
|
Loading…
Reference in a new issue