update to 17.5.5
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/teleport?expand=0&rev=314
This commit is contained in:
2
_service
2
_service
@@ -4,7 +4,7 @@
|
||||
<param name="scm">git</param>
|
||||
<param name="submodules">disable</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="revision">v17.5.4</param>
|
||||
<param name="revision">v17.5.5</param>
|
||||
<param name="match-tag">v*</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bca78077a23880e005f639651f9650249bb68769d2ea6ecf1895a044be004aac
|
||||
size 285715470
|
3
teleport-17.5.5.obscpio
Normal file
3
teleport-17.5.5.obscpio
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0bacfd891acee2c4224413afdd0192d432fd0adbc8081efbcd6cea7b72a7c69b
|
||||
size 285633038
|
@@ -1,3 +1,26 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 16 06:52:54 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
- update to 17.5.5:
|
||||
* Fixed backward compatibility for Access List
|
||||
'membershipRequires is missing' for older terraform providers.
|
||||
#56743
|
||||
* Fixed VNet DNS configuration on Windows hosts joined to Active
|
||||
Directory domains. #56739
|
||||
* Updated default client timeout and upload rate for Pyroscope.
|
||||
#56731
|
||||
* Bot instances are now sortable by latest heartbeat time in the
|
||||
web UI. #56685
|
||||
* Updated Go to 1.23.11. #56680
|
||||
* Fixed tbot SPIFFE Workload API failing to renew SPIFFE SVIDs.
|
||||
#56663
|
||||
* Fixed some icons displaying as white/black blocks. #56620
|
||||
* Terraform Provider: add support for skipping proxy certificate
|
||||
verification in development environments. #56530
|
||||
* Made VNet DNS available over IPv4. #56476
|
||||
* Fixed heartbeat_connections_received_total undercounting
|
||||
Database and Kubernetes heartbeats by 1. #54726
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 3 05:02:31 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
name: teleport
|
||||
version: 17.5.4
|
||||
mtime: 1751478827
|
||||
commit: 0fa760c60d55c02aac03bec2ae7d7743d7f75ad9
|
||||
version: 17.5.5
|
||||
mtime: 1752602535
|
||||
commit: d87af52b087e1281e67eecbdfb817791e525eafe
|
||||
|
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: teleport
|
||||
Version: 17.5.4
|
||||
Version: 17.5.5
|
||||
Release: 0
|
||||
Summary: Identity-aware, multi-protocol access proxy
|
||||
License: AGPL-3.0-only
|
||||
@@ -214,11 +214,11 @@ cd tool/fdpass-teleport
|
||||
|
||||
%install
|
||||
# Install the binary.
|
||||
install -D -m 0755 tsh "%{buildroot}/%{_bindir}/tsh"
|
||||
install -D -m 0755 tctl "%{buildroot}/%{_bindir}/tctl"
|
||||
install -D -m 0755 tbot "%{buildroot}/%{_bindir}/tbot"
|
||||
install -D -m 0755 tool/fdpass-teleport/target/release/fdpass-teleport "%{buildroot}/%{_bindir}/fdpass-teleport"
|
||||
install -D -m 0755 teleport "%{buildroot}/%{_sbindir}/teleport"
|
||||
install -D -m 0755 tsh %{buildroot}%{_bindir}/tsh
|
||||
install -D -m 0755 tctl %{buildroot}%{_bindir}/tctl
|
||||
install -D -m 0755 tbot %{buildroot}%{_bindir}/tbot
|
||||
install -D -m 0755 target/release/fdpass-teleport %{buildroot}%{_bindir}/fdpass-teleport
|
||||
install -D -m 0755 teleport %{buildroot}%{_sbindir}/teleport
|
||||
install -D -m 644 %{SOURCE3} %{buildroot}%{_unitdir}/teleport.service
|
||||
install -D -m 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/teleport.yaml
|
||||
install -D -m 644 examples/systemd/machine-id/machine-id.service %{buildroot}%{_unitdir}/
|
||||
@@ -228,41 +228,41 @@ install -D -m 644 %{SOURCE5} %{buildroot}%{_sysconfdir}/tbot.yaml
|
||||
|
||||
# create the bash completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/bash-completion/completions/
|
||||
%{buildroot}/%{_sbindir}/teleport --completion-script-bash > %{buildroot}%{_datarootdir}/bash-completion/completions/teleport
|
||||
%{buildroot}%{_sbindir}/teleport --completion-script-bash > %{buildroot}%{_datarootdir}/bash-completion/completions/teleport
|
||||
|
||||
# create the zsh completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/zsh/site-functions/
|
||||
%{buildroot}/%{_sbindir}/teleport --completion-script-zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_teleport
|
||||
%{buildroot}%{_sbindir}/teleport --completion-script-zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_teleport
|
||||
|
||||
# tctl completions
|
||||
|
||||
# create the bash completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/bash-completion/completions/
|
||||
%{buildroot}/%{_bindir}/tctl --completion-script-bash > %{buildroot}%{_datarootdir}/bash-completion/completions/tctl
|
||||
%{buildroot}%{_bindir}/tctl --completion-script-bash > %{buildroot}%{_datarootdir}/bash-completion/completions/tctl
|
||||
|
||||
# create the zsh completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/zsh/site-functions/
|
||||
%{buildroot}/%{_bindir}/tctl --completion-script-zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_tctl
|
||||
%{buildroot}%{_bindir}/tctl --completion-script-zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_tctl
|
||||
|
||||
# tsh completions
|
||||
|
||||
# create the bash completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/bash-completion/completions/
|
||||
%{buildroot}/%{_bindir}/tsh --completion-script-bash > %{buildroot}%{_datarootdir}/bash-completion/completions/tsh
|
||||
%{buildroot}%{_bindir}/tsh --completion-script-bash > %{buildroot}%{_datarootdir}/bash-completion/completions/tsh
|
||||
|
||||
# create the zsh completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/zsh/site-functions/
|
||||
%{buildroot}/%{_bindir}/tsh --completion-script-zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_tsh
|
||||
%{buildroot}%{_bindir}/tsh --completion-script-zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_tsh
|
||||
|
||||
# tbot completions
|
||||
|
||||
# create the bash completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/bash-completion/completions/
|
||||
%{buildroot}/%{_bindir}/tbot --completion-script-bash > %{buildroot}%{_datarootdir}/bash-completion/completions/tbot
|
||||
%{buildroot}%{_bindir}/tbot --completion-script-bash > %{buildroot}%{_datarootdir}/bash-completion/completions/tbot
|
||||
|
||||
# create the zsh completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/zsh/site-functions/
|
||||
%{buildroot}/%{_bindir}/tbot --completion-script-zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_tbot
|
||||
%{buildroot}%{_bindir}/tbot --completion-script-zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_tbot
|
||||
|
||||
# teleport service
|
||||
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5447b88eb3e6649f5d4493bc20c926859672fcca89835cda86fb59ef33315851
|
||||
size 51424837
|
||||
oid sha256:8193c7d66f27fa939cc6f65b1d05ccf9e65ce8a37b3471ae012cba1fd87ab80b
|
||||
size 51418091
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:82995946fa24dec4df96b0ca17a295f420d78a442272a59251de2af1dae4633f
|
||||
size 4314856
|
||||
oid sha256:f2c14443fb8f67b32542c235996ee2e01d4a1529841986af5b2395336e9e4958
|
||||
size 4314780
|
||||
|
Reference in New Issue
Block a user