Accepting request 947309 from home:jzerebecki:branches:devel:kubic:ignition
- Update to version 5.2.0: * providers: log message when SSH key is removed * providers: limit hostname file output value to HOST_NAME_MAX bytes * Consistently un-capitalize log messages * Explicitly log the hostname we write * providers/microsoft: allow unused fields in goal state structs * providers: only log we wrote SSH keys when we actually did - Update to version 5.1.0: * Add PowerVS provider * cli: correctly print version when --version specified * cli: don't report an error when --help or --version is specified * providers/packet: access metadata service over HTTPS * providers/gcp: access GCP metadata service by IP address * minimum supported rust version is now 1.49.0 * Refresh fix-authorized-keys-location.patch OBS-URL: https://build.opensuse.org/request/show/947309 OBS-URL: https://build.opensuse.org/package/show/devel:kubic:ignition/afterburn?expand=0&rev=16
This commit is contained in:
parent
880236d29f
commit
673225f18e
6
_service
6
_service
@ -1,12 +1,10 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="manual">
|
<service name="tar_scm" mode="manual">
|
||||||
<!-- <param name="url">https://github.com/coreos/afterburn.git</param> -->
|
<param name="url">https://github.com/coreos/afterburn.git</param>
|
||||||
<param name="url">https://github.com/JanZerebecki/afterburn.git</param>
|
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="exclude">.git</param>
|
<param name="exclude">.git</param>
|
||||||
<param name="filename">afterburn</param>
|
<param name="filename">afterburn</param>
|
||||||
<!-- <param name="revision">v5.0.0</param> -->
|
<param name="revision">v5.2.0</param>
|
||||||
<param name="revision">origin/for-5.0</param>
|
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/coreos/afterburn.git</param>
|
<param name="url">https://github.com/coreos/afterburn.git</param>
|
||||||
<param name="changesrevision">8c366ef408e755f557aaead99c74bfc35c1c5bf5</param></service><service name="tar_scm">
|
<param name="changesrevision">43dc76d7c38921d8eb0dc24d3b0b18787fa8ee07</param></service><service name="tar_scm">
|
||||||
<param name="url">https://github.com/JanZerebecki/afterburn.git</param>
|
<param name="url">https://github.com/JanZerebecki/afterburn.git</param>
|
||||||
<param name="changesrevision">104ec25049bf429578c60877c0ea503ee96354e4</param></service></servicedata>
|
<param name="changesrevision">104ec25049bf429578c60877c0ea503ee96354e4</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:25a4b23a2a7015fbb77fbd194d3fc72aaad593874e4dd9285bed617d5acc13a3
|
|
||||||
size 10990668
|
|
3
afterburn-5.2.0.tar.xz
Normal file
3
afterburn-5.2.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0db0e2f1c75728a74a2255e79cb89b74eef4ea41c873d210fcc6bb206857c3f8
|
||||||
|
size 70804
|
@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 18 21:12:09 UTC 2022 - jan.suse@zerebecki.de
|
||||||
|
|
||||||
|
- Update to version 5.2.0:
|
||||||
|
* providers: log message when SSH key is removed
|
||||||
|
* providers: limit hostname file output value to HOST_NAME_MAX bytes
|
||||||
|
* Consistently un-capitalize log messages
|
||||||
|
* Explicitly log the hostname we write
|
||||||
|
* providers/microsoft: allow unused fields in goal state structs
|
||||||
|
* providers: only log we wrote SSH keys when we actually did
|
||||||
|
- Update to version 5.1.0:
|
||||||
|
* Add PowerVS provider
|
||||||
|
* cli: correctly print version when --version specified
|
||||||
|
* cli: don't report an error when --help or --version is specified
|
||||||
|
* providers/packet: access metadata service over HTTPS
|
||||||
|
* providers/gcp: access GCP metadata service by IP address
|
||||||
|
* minimum supported rust version is now 1.49.0
|
||||||
|
* Refresh fix-authorized-keys-location.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 13 19:05:51 UTC 2022 - jan.suse@zerebecki.de
|
Thu Jan 13 19:05:51 UTC 2022 - jan.suse@zerebecki.de
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
%global dracutmodulesdir %(pkg-config --variable=dracutmodulesdir dracut || echo '/usr/lib/dracut/modules.d')
|
%global dracutmodulesdir %(pkg-config --variable=dracutmodulesdir dracut || echo '/usr/lib/dracut/modules.d')
|
||||||
|
|
||||||
Name: afterburn
|
Name: afterburn
|
||||||
Version: 5.0.0
|
Version: 5.2.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A cloud provider agent
|
Summary: A cloud provider agent
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@ -36,7 +36,7 @@ Patch3: no-network-args.patch
|
|||||||
ExcludeArch: %ix86 s390x ppc64le
|
ExcludeArch: %ix86 s390x ppc64le
|
||||||
|
|
||||||
BuildRequires: cargo
|
BuildRequires: cargo
|
||||||
BuildRequires: rust >= 1.44.0
|
BuildRequires: rust >= 1.49.0
|
||||||
BuildRequires: pkgconfig(openssl)
|
BuildRequires: pkgconfig(openssl)
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -54,7 +54,7 @@ to run in the initramfs on boot.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -N -a1
|
%autosetup -N -a1
|
||||||
%patch1 -p0
|
%patch1 -p1
|
||||||
%patch2 -p0
|
%patch2 -p0
|
||||||
%patch3 -p0
|
%patch3 -p0
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
--- src/providers/mod.rs.orig
|
diff --git a/src/providers/mod.rs b/src/providers/mod.rs
|
||||||
+++ src/providers/mod.rs
|
index f684d22..153d473 100644
|
||||||
@@ -87,8 +87,8 @@ fn write_ssh_keys(user: User, ssh_keys:
|
--- a/src/providers/mod.rs
|
||||||
|
+++ b/src/providers/mod.rs
|
||||||
|
@@ -98,8 +98,8 @@ fn write_ssh_keys(user: User, ssh_keys: Vec<PublicKey>) -> Result<()> {
|
||||||
.context("failed to switch user/group")?;
|
.context("failed to switch user/group")?;
|
||||||
|
|
||||||
// get paths
|
// get paths
|
||||||
@ -10,4 +12,4 @@
|
|||||||
+ let file_name = "authorized_keys";
|
+ let file_name = "authorized_keys";
|
||||||
let file_path = &dir_path.join(file_name);
|
let file_path = &dir_path.join(file_name);
|
||||||
|
|
||||||
if !ssh_keys.is_empty() {
|
// stringify for logging
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:f150176b8003f12b8351a19b052b71d976eb032f733cb73c7e3900e2969cebb6
|
oid sha256:9ac09aafb73a7d740ee13375cba62a4ed8c6d6fb49572fc56681cfc2b2c3784a
|
||||||
size 10884232
|
size 11169696
|
||||||
|
Loading…
Reference in New Issue
Block a user