forked from pool/easy-rsa
Accepting request 1118204 from home:polslinux:branches:network:vpn
- Update to 3.1.7: * Completely Remove Upgrade Functionality * Expand help to include undocumented commands * Forbid "default vars in the default PKI" for all commands * show-expire: Calculate certificate expire seconds from Database date * Expand help to include undocumented commands * New command: make-vars - Print vars.example (here-doc) to stdout * gen-crl: preserve existing crl.pem ownership+mode by @Tabiskabis in #1020 * Improve vars auto load * Replace santize_path() and ignore Windows "security" warning * Improve select_vars() and source_vars() * sign-req: Allow the CSR DN-field order to be preserved * vars-file: Warn about EASYRSA_NO_VARS disabling vars-file use * Expand default status to include vars-file and CA status * verify_ssl_lib(): Minor style improvements * cleanup: Rename $easyrsa_error_exit to $easyrsa_exit_with_error OBS-URL: https://build.opensuse.org/request/show/1118204 OBS-URL: https://build.opensuse.org/package/show/network:vpn/easy-rsa?expand=0&rev=44
This commit is contained in:
parent
7de765b2fb
commit
bf5cea0c9f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9fc6081d4927e68e9baef350e6b3010c7fb4f4a5c3e645ddac901081eb6adbb2
|
||||
size 75808
|
Binary file not shown.
3
EasyRSA-3.1.7.tgz
Normal file
3
EasyRSA-3.1.7.tgz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aaa48fadcbb77511b9c378554ef3eae09f8c7bc149d6f56ba209f1c9bab98c6e
|
||||
size 81373
|
BIN
EasyRSA-3.1.7.tgz.sig
Normal file
BIN
EasyRSA-3.1.7.tgz.sig
Normal file
Binary file not shown.
@ -1,3 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 17 06:35:16 UTC 2023 - Paolo Stivanin <info@paolostivanin.com>
|
||||
|
||||
- Update to 3.1.7:
|
||||
* Completely Remove Upgrade Functionality
|
||||
* Expand help to include undocumented commands
|
||||
* Forbid "default vars in the default PKI" for all commands
|
||||
* show-expire: Calculate certificate expire seconds from Database date
|
||||
* Expand help to include undocumented commands
|
||||
* New command: make-vars - Print vars.example (here-doc) to stdout
|
||||
* gen-crl: preserve existing crl.pem ownership+mode by @Tabiskabis in #1020
|
||||
* Improve vars auto load
|
||||
* Replace santize_path() and ignore Windows "security" warning
|
||||
* Improve select_vars() and source_vars()
|
||||
* sign-req: Allow the CSR DN-field order to be preserved
|
||||
* vars-file: Warn about EASYRSA_NO_VARS disabling vars-file use
|
||||
* Expand default status to include vars-file and CA status
|
||||
* verify_ssl_lib(): Minor style improvements
|
||||
* cleanup: Rename $easyrsa_error_exit to $easyrsa_exit_with_error
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 6 18:54:29 UTC 2023 - Matthias Eliasson <elimat@opensuse.org>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
%define pname EasyRSA
|
||||
Name: easy-rsa
|
||||
Version: 3.1.5
|
||||
Version: 3.1.7
|
||||
Release: 0
|
||||
Summary: CLI utility to build and manage a PKI CA
|
||||
License: GPL-2.0-or-later
|
||||
@ -38,8 +38,7 @@ easy-rsa is a CLI utility to build and manage a Public Key Infrastructure
|
||||
certificates, including sub-CAs, and create Certificate Revokation Lists (CRL).
|
||||
|
||||
%prep
|
||||
%setup -q -n %{pname}-%{version}
|
||||
%patch100
|
||||
%autosetup -p1 -n %{pname}-%{version}
|
||||
|
||||
%build
|
||||
|
||||
|
@ -1,11 +1,23 @@
|
||||
--- easyrsa.orig 2023-08-06 20:50:08.140959981 +0200
|
||||
+++ easyrsa 2023-08-06 20:50:30.430836235 +0200
|
||||
@@ -5393,7 +5393,7 @@
|
||||
--- EasyRSA-3.1.7/easyrsa.orig 2023-10-17 08:27:37.665021587 +0200
|
||||
+++ EasyRSA-3.1.7/easyrsa 2023-10-17 08:34:59.943976542 +0200
|
||||
@@ -1440,10 +1440,7 @@
|
||||
# "$EASYRSA" - Old default and Windows
|
||||
# "$PWD" - Usually the same as above, avoid
|
||||
# "${0%/*}" - Usually the same as above, avoid
|
||||
- # '/usr/local/share/easy-rsa' - Default user installed
|
||||
- # '/usr/share/easy-rsa' - Default system installed
|
||||
- # Room for more..
|
||||
- # '/etc/easy-rsa' - Last resort
|
||||
+ # '/etc/easy-rsa'
|
||||
|
||||
# set up program path
|
||||
prog_file="$0"
|
||||
- prog_dir="${prog_file%/*}"
|
||||
+ prog_dir="/etc/easy-rsa"
|
||||
if [ "$prog_dir" = . ] || [ "$prog_dir" = "$PWD" ]
|
||||
then
|
||||
prog_in_pwd=1
|
||||
# Find and optionally copy data-files, in specific order
|
||||
for area in \
|
||||
@@ -1451,8 +1448,6 @@
|
||||
"$EASYRSA" \
|
||||
"$PWD" \
|
||||
"${0%/*}" \
|
||||
- '/usr/local/share/easy-rsa' \
|
||||
- '/usr/share/easy-rsa' \
|
||||
'/etc/easy-rsa' \
|
||||
# EOL
|
||||
do
|
||||
|
Loading…
Reference in New Issue
Block a user