- lorax-composer: Install selinux-policy-targeted in images (bcl@redhat.com)
- Remove setfiles from mkrootfsimage (bcl@redhat.com) - New lorax documentation - 30.7 (bcl@redhat.com) - Remove SELinux Permissive checks (bcl@redhat.com) - Drop minor version from php package in blueprint (atodorov@redhat.com) - Use a temporary shared dir when testing (atodorov@redhat.com) - Copy blueprints used for testing to temporary directory (atodorov@redhat.com) - Add make targets for Jenkins (atodorov@redhat.com) - Add --no-system-repos to lorax-composer (bcl@redhat.com) - Install grubby-deprecated package for ARMv7 (javierm@redhat.com) - Teach test_cli.sh to execute test scripts via arguments (atodorov@redhat.com) - new test: build an image and deploy it on Azure (atodorov@redhat.com) - Fix typo in comment (atodorov@redhat.com) - Fix reporting of coverage results to coverall.io (bcl@redhat.com) - For OpenStack build image with rng-tools installed (atodorov@redhat.com) - Add tests for partitioned disk images (bcl@redhat.com) - Create a kpartx_disk_img function (bcl@redhat.com) - Add tests for pylorax.imgutils (bcl@redhat.com) - Add tests to test_creator.py (bcl@redhat.com) - Fix make_appliance and the libvirt.tmpl (bcl@redhat.com) - Add some tests for creator.py (bcl@redhat.com) - tests: Add executils test (bcl@redhat.com) - tests: Add sysutils test (bcl@redhat.com) - tests: Add discinfo test (bcl@redhat.com) - tests: Add treeinfo test (bcl@redhat.com) - Stop using build to run the tests, allow using podman (bcl@redhat.com) - new test: build and deploy an image in OpenStack (atodorov@redhat.com) - Fix typos in VM_NAME and cleanup command (atodorov@redhat.com) - new test: build and deploy images on vSphere (atodorov@redhat.com) - Update docs with info about ssh keys (atodorov@redhat.com)
This commit is contained in:
parent
b15b4e3eaa
commit
d7daa042e4
1
.gitignore
vendored
1
.gitignore
vendored
@ -147,3 +147,4 @@
|
|||||||
/lorax-30.4.tar.gz
|
/lorax-30.4.tar.gz
|
||||||
/lorax-30.5.tar.gz
|
/lorax-30.5.tar.gz
|
||||||
/lorax-30.6.tar.gz
|
/lorax-30.6.tar.gz
|
||||||
|
/lorax-30.7.tar.gz
|
||||||
|
36
lorax.spec
36
lorax.spec
@ -3,7 +3,7 @@
|
|||||||
%define debug_package %{nil}
|
%define debug_package %{nil}
|
||||||
|
|
||||||
Name: lorax
|
Name: lorax
|
||||||
Version: 30.6
|
Version: 30.7
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Tool for creating the anaconda install images
|
Summary: Tool for creating the anaconda install images
|
||||||
|
|
||||||
@ -37,8 +37,10 @@ Requires: module-init-tools
|
|||||||
Requires: parted
|
Requires: parted
|
||||||
Requires: squashfs-tools >= 4.2
|
Requires: squashfs-tools >= 4.2
|
||||||
Requires: util-linux
|
Requires: util-linux
|
||||||
|
Requires: xz-lzma-compat
|
||||||
Requires: xz
|
Requires: xz
|
||||||
Requires: pigz
|
Requires: pigz
|
||||||
|
Requires: pbzip2
|
||||||
Requires: dracut >= 030
|
Requires: dracut >= 030
|
||||||
Requires: kpartx
|
Requires: kpartx
|
||||||
|
|
||||||
@ -230,6 +232,38 @@ getent passwd weldr >/dev/null 2>&1 || useradd -r -g weldr -d / -s /sbin/nologin
|
|||||||
%{_sysconfdir}/bash_completion.d/composer-cli
|
%{_sysconfdir}/bash_completion.d/composer-cli
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Nov 29 2018 Brian C. Lane <bcl@redhat.com> 30.7-1
|
||||||
|
- lorax-composer: Install selinux-policy-targeted in images (bcl@redhat.com)
|
||||||
|
- Remove setfiles from mkrootfsimage (bcl@redhat.com)
|
||||||
|
- New lorax documentation - 30.7 (bcl@redhat.com)
|
||||||
|
- Remove SELinux Permissive checks (bcl@redhat.com)
|
||||||
|
- Drop minor version from php package in blueprint (atodorov@redhat.com)
|
||||||
|
- Use a temporary shared dir when testing (atodorov@redhat.com)
|
||||||
|
- Copy blueprints used for testing to temporary directory (atodorov@redhat.com)
|
||||||
|
- Add make targets for Jenkins (atodorov@redhat.com)
|
||||||
|
- Add --no-system-repos to lorax-composer (bcl@redhat.com)
|
||||||
|
- Install grubby-deprecated package for ARMv7 (javierm@redhat.com)
|
||||||
|
- Teach test_cli.sh to execute test scripts via arguments (atodorov@redhat.com)
|
||||||
|
- new test: build an image and deploy it on Azure (atodorov@redhat.com)
|
||||||
|
- Fix typo in comment (atodorov@redhat.com)
|
||||||
|
- Fix reporting of coverage results to coverall.io (bcl@redhat.com)
|
||||||
|
- For OpenStack build image with rng-tools installed (atodorov@redhat.com)
|
||||||
|
- Add tests for partitioned disk images (bcl@redhat.com)
|
||||||
|
- Create a kpartx_disk_img function (bcl@redhat.com)
|
||||||
|
- Add tests for pylorax.imgutils (bcl@redhat.com)
|
||||||
|
- Add tests to test_creator.py (bcl@redhat.com)
|
||||||
|
- Fix make_appliance and the libvirt.tmpl (bcl@redhat.com)
|
||||||
|
- Add some tests for creator.py (bcl@redhat.com)
|
||||||
|
- tests: Add executils test (bcl@redhat.com)
|
||||||
|
- tests: Add sysutils test (bcl@redhat.com)
|
||||||
|
- tests: Add discinfo test (bcl@redhat.com)
|
||||||
|
- tests: Add treeinfo test (bcl@redhat.com)
|
||||||
|
- Stop using build to run the tests, allow using podman (bcl@redhat.com)
|
||||||
|
- new test: build and deploy an image in OpenStack (atodorov@redhat.com)
|
||||||
|
- Fix typos in VM_NAME and cleanup command (atodorov@redhat.com)
|
||||||
|
- new test: build and deploy images on vSphere (atodorov@redhat.com)
|
||||||
|
- Update docs with info about ssh keys (atodorov@redhat.com)
|
||||||
|
|
||||||
* Mon Oct 29 2018 Brian C. Lane <bcl@redhat.com> 30.6-1
|
* Mon Oct 29 2018 Brian C. Lane <bcl@redhat.com> 30.6-1
|
||||||
- new test: build and deploy images on AWS (atodorov@redhat.com)
|
- new test: build and deploy images on AWS (atodorov@redhat.com)
|
||||||
- Disable execution of new tests which need Docker privileged mode (atodorov@redhat.com)
|
- Disable execution of new tests which need Docker privileged mode (atodorov@redhat.com)
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (lorax-30.6.tar.gz) = 21ff5360590ea1182db258254f62813789534a8dde92eaf02c5943d8f7bd5fdbeeed2870be0fbc167d8fb92d277028583bf80ea4a149d918fa95875277c04620
|
SHA512 (lorax-30.7.tar.gz) = 6dc2e79c7521677ad2500b4a5993a4cd02b6419803011994c15553f0b900f41f0b9b94cc2475d682e5ad912d66a1f816c292062cda7cbd8fdd5527c19a3dea52
|
||||||
|
Loading…
Reference in New Issue
Block a user