mirror of
https://github.com/ovh/the-bastion.git
synced 2025-01-01 13:01:53 +08:00
release v3.03.01
This commit is contained in:
parent
003052530e
commit
2a905aca96
3 changed files with 19 additions and 1 deletions
|
@ -1,3 +1,16 @@
|
|||
## v3.03.01 - 2021/03/25
|
||||
- enh: osh-orphaned-homedir.sh: add more security checks to ensure we don't archive still-used home dirs
|
||||
- enh: install.inc: try harder to hit GitHub API in CI
|
||||
- fix: fixrights.sh: 'chmod --' not supported under FreeBSD
|
||||
- fix: packages-check.sh: centos: ensure cache is up to date before trying to install packages
|
||||
- fix: groupDelServer: missing autocompletion in interactive mode
|
||||
- fix: install-yubico-piv-checker: ppc64le installation was broken
|
||||
- fix: scp: abort early if host is not found to avoid a warn()
|
||||
- fix: osh-backup-acl-keys: detect file removed transient error
|
||||
- fix: add a case to the ignored perl panic race condition
|
||||
- chore: mkdir -p doesn't fail if dir already exists
|
||||
- chore: tests: support multiple unit-test files
|
||||
|
||||
## v3.03.00 - 2021/02/22
|
||||
- feat: transmit PIV enforcement status to remote realms, so that the remote policy can be enforced (#33)
|
||||
- feat: add `groupGenerateEgressKey` and `groupDelEgressKey` (#135)
|
||||
|
|
|
@ -24,6 +24,11 @@ Note that if you're using an infrastructure automation tool such as Puppet, Ansi
|
|||
Version-specific upgrade instructions
|
||||
=====================================
|
||||
|
||||
v3.03.01 - 2021/03/25
|
||||
*********************
|
||||
|
||||
No specific upgrade instructions.
|
||||
|
||||
v3.03.00 - 2021/02/22
|
||||
*********************
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ use common::sense;
|
|||
use Fcntl;
|
||||
use POSIX qw(strftime);
|
||||
|
||||
our $VERSION = '3.03.00';
|
||||
our $VERSION = '3.03.01';
|
||||
|
||||
BEGIN {
|
||||
# only used by the handler below
|
||||
|
|
Loading…
Reference in a new issue