<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vyos-cloud-init.git/packages/redhat, branch circinus</title>
<subtitle> (mirror of https://github.com/marekm72/vyos-cloud-init.git)
</subtitle>
<id>https://git.amelek.net/marekm72/vyos-cloud-init.git/atom?h=circinus</id>
<link rel='self' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/atom?h=circinus'/>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/'/>
<updated>2021-10-29T20:39:29+00:00</updated>
<entry>
<title>Allow libexec for hotplug (#1088)</title>
<updated>2021-10-29T20:39:29+00:00</updated>
<author>
<name>James Falcon</name>
<email>james.falcon@canonical.com</email>
</author>
<published>2021-10-29T20:39:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=a90d8338f07b30a46887f7c133baade63129a53a'/>
<id>urn:sha1:a90d8338f07b30a46887f7c133baade63129a53a</id>
<content type='text'>
When we added the install hotplug module, we forgot to update the
redhet/cloud-init.spec.in file and allow for execution on /usr/libexec.
This PR adds that functionality.</content>
</entry>
<entry>
<title>Inhibit sshd-keygen@.service if cloud-init is active (#1028)</title>
<updated>2021-10-12T14:31:36+00:00</updated>
<author>
<name>Ryan Harper</name>
<email>ryan.harper@canonical.com</email>
</author>
<published>2021-10-12T14:31:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=b3e31ba228d32c318872fb68edda272f679e1004'/>
<id>urn:sha1:b3e31ba228d32c318872fb68edda272f679e1004</id>
<content type='text'>
In some cloud-init enabled images the sshd-keygen@.service
may race with cloud-init and prevent ssh host keys from being
generated or generating host keys twice slowing boot and  consuming
additional entropy during boot.  This drop-in unit adds a condition to
the sshd-keygen@.service which prevents running if cloud-init is active.</content>
</entry>
<entry>
<title>Initial hotplug support (#936)</title>
<updated>2021-07-19T19:13:21+00:00</updated>
<author>
<name>James Falcon</name>
<email>therealfalcon@gmail.com</email>
</author>
<published>2021-07-19T19:13:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=184c836a16e9954a2cba11ae21f07923077ec904'/>
<id>urn:sha1:184c836a16e9954a2cba11ae21f07923077ec904</id>
<content type='text'>
Adds a udev script which will invoke a hotplug hook script on all net
add events. The script will write some udev arguments to a systemd FIFO
socket (to ensure we have only instance of cloud-init running at a
time), which is then read by a new service that calls a new 'cloud-init
devel hotplug-hook' command to handle the new event.

This hotplug-hook command will:
- Fetch the pickled datsource
- Verify that the hotplug event is supported/enabled
- Update the metadata for the datasource
- Ensure the hotplugged device exists within the datasource
- Apply the config change on the datasource metadata
- Bring up the new interface (or apply global network configuration)
- Save the updated metadata back to the pickle cache

Also scattered in some unrelated typing where helpful</content>
</entry>
<entry>
<title>redhat spec: add missing BuildRequires (#552)</title>
<updated>2020-08-27T14:37:14+00:00</updated>
<author>
<name>Paride Legovini</name>
<email>paride.legovini@canonical.com</email>
</author>
<published>2020-08-27T14:37:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=575750ac4a3abb6fdfa45e2cc65186df291d8ddf'/>
<id>urn:sha1:575750ac4a3abb6fdfa45e2cc65186df291d8ddf</id>
<content type='text'>
456fb55744a1acc6bd2f464b7656a9c33d0b7ac5 made tools/read-dependencies
and package/brpm distinguish between build dependencies and runtime
dependencies, however packages/redhat/cloud-init.spec.in expects all
the dependencies to be in the 'requires' list, thus missing some build
dependencies.

This change makes cloud-init.spec use 'buildrequires' too.

The build happens to succeed without python3-devel on the epel-8 copr
chroot as it pulls in the epel-rpm-macros package, which in turn depends
on python3-devel. In other words the dependency is satisfied by chance.
Packages building for Python 3 need to explicitly specify BuildRequires:
python3-devel, see: [1].

[1] https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/</content>
</entry>
<entry>
<title>Adapt the package building scripts to use Python 3 (#231)</title>
<updated>2020-05-02T00:57:24+00:00</updated>
<author>
<name>Paride Legovini</name>
<email>paride.legovini@canonical.com</email>
</author>
<published>2020-05-02T00:57:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=4d2684848722cb2d469ad4fa60999bf81cf7056e'/>
<id>urn:sha1:4d2684848722cb2d469ad4fa60999bf81cf7056e</id>
<content type='text'>
Since upstream cloud-init has dropped python2 support,
adapt remaining package build scripts and tools to python3 only

Changes:

* Do not template debian/rules as python3 is the only supported version
* Drop six from requirements.txt
* Makefile: drop everything related to Python 2
* run-container: install the CI deps only on ubuntu|debian
* read-version: update the shebang to use Python 3
* brpm: read_dependencies(): drop unused argument
* read-dependencies: switch to Py3 and drop the --python-version option
* pkg-deps.json: drop the Python version field and update the redhat deps
* pkg-deps.json: drop the unittest2 and contextlib2 renames
* Update RPM the spec file to use Python 3 when building the RPM
* bddeb: drop support for Python 2</content>
</entry>
<entry>
<title>packages: update rpm specs for new bash completion path</title>
<updated>2019-04-19T21:38:44+00:00</updated>
<author>
<name>Daniel Watkins</name>
<email>daniel.watkins@canonical.com</email>
</author>
<published>2019-04-19T21:38:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=69251d5b4431204c1e768fdf6e9f268edceb2e96'/>
<id>urn:sha1:69251d5b4431204c1e768fdf6e9f268edceb2e96</id>
<content type='text'>
LP: #1825444
</content>
</entry>
<entry>
<title>Add cloud-id binary to packages for SUSE</title>
<updated>2018-10-25T20:01:39+00:00</updated>
<author>
<name>Jason Zions</name>
<email>jasonzio@microsoft.com</email>
</author>
<published>2018-10-25T20:01:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=744c42361317eaa23f860104f152432e5bb5b996'/>
<id>urn:sha1:744c42361317eaa23f860104f152432e5bb5b996</id>
<content type='text'>
</content>
</entry>
<entry>
<title>packages: Make rpm spec files patch in package version like in debs.</title>
<updated>2018-05-23T18:41:11+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2018-05-23T18:41:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=2ab8960402677ab66583d56dcb7704369a1256f5'/>
<id>urn:sha1:2ab8960402677ab66583d56dcb7704369a1256f5</id>
<content type='text'>
This makes the necessary changes to patch the full packaged version into
the trunk maintained redhat and suse spec files.
</content>
</entry>
<entry>
<title>Implement bash completion script for cloud-init command line</title>
<updated>2018-04-18T01:07:59+00:00</updated>
<author>
<name>Ryan Harper</name>
<email>ryan.harper@canonical.com</email>
</author>
<published>2018-04-18T01:07:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=6a979bb2fabd187efc392de7b0852cd0361bc9b8'/>
<id>urn:sha1:6a979bb2fabd187efc392de7b0852cd0361bc9b8</id>
<content type='text'>
In bash shells with bash_completion enabled, now the cloud-init
sub commands and parameters/flags will be shown.
</content>
</entry>
<entry>
<title>Do not provide systemd-fsck drop-in which could cause ordering cycles.</title>
<updated>2017-09-15T17:14:18+00:00</updated>
<author>
<name>Balint Reczey</name>
<email>balint.reczey@canonical.com</email>
</author>
<published>2017-09-15T15:50:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=a2f8ce9c80debdb788e7ab37401aa98c2c270f26'/>
<id>urn:sha1:a2f8ce9c80debdb788e7ab37401aa98c2c270f26</id>
<content type='text'>
Revert "centos: do not package systemd-fsck drop-in."
Revert "systemd: make systemd-fsck run after cloud-init.service"

The systemd-fsck drop-in caused regressions by introducing ordering
The change reverts the original commit that added systemd-fsck drop-in
and another commit that had removed that from the centos packaging:
   1f5489c258a26f4e26261c40786537951d67df1e
   8a5296c41db45be3a172862f324ad44e732a2250

The result is to no longer provide the systemd-fsck drop-in.

LP: #1717477
</content>
</entry>
</feed>
