mirror of
https://github.com/ovh/the-bastion.git
synced 2025-09-05 04:24:11 +08:00
release v3.06.00
This commit is contained in:
parent
00aa2e7efc
commit
11b2bc60b2
3 changed files with 20 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
## v3.06.00 - 2021/10/15
|
||||
- feat: accountModify: add --pubkey-auth-optional
|
||||
- fix: accountPIV: fix bad autocompletion rule
|
||||
- fix: groupdel: false positive in lock contention detection
|
||||
- doc: bastion.conf: add superowner system group requirement
|
||||
|
||||
## v3.05.01 - 2021/09/22
|
||||
- feat: add ``--proactive-mfa`` and ``mfa``/``nofa`` interactive commands
|
||||
- feat: ``osh-backup-acl-keys``: add the possibility to sign encrypted backups (#209)
|
||||
|
|
|
@ -24,6 +24,19 @@ Note that if you're using an infrastructure automation tool such as Puppet, Ansi
|
|||
Version-specific upgrade instructions
|
||||
=====================================
|
||||
|
||||
v3.06.00 - 2021/10/15
|
||||
*********************
|
||||
|
||||
The ``sshd_config`` templates have been modified to reflect the changes needed to use
|
||||
the new ``--pubkey-auth-optional`` parameter of :doc:`/plugins/restricted/accountModify` (`#237 <https://github.com/ovh/the-bastion/pull/237>`_).
|
||||
If you want to use it, don't forget to review your ``sshd_config`` and modify it accordingly: the templates can be found in ``etc/ssh/``.
|
||||
|
||||
Note that misconfiguring `sshd` and `pam` together could at worst entirely disable sshd authentication.
|
||||
If you have a custom configuration, different from the templates we provide, please double-check
|
||||
that such corner case is not possible by design.
|
||||
A good way to ensure this is to review the `pam` configuration and ensure that there is no execution
|
||||
flow that pushes a `pam_success` value to the pam stack without requiring any form of authentication.
|
||||
|
||||
v3.05.01 - 2021/09/22
|
||||
*********************
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ use common::sense;
|
|||
use Fcntl;
|
||||
use POSIX qw(strftime);
|
||||
|
||||
our $VERSION = '3.05.01';
|
||||
our $VERSION = '3.06.00';
|
||||
|
||||
BEGIN {
|
||||
# only used by the handler below
|
||||
|
|
Loading…
Add table
Reference in a new issue