Merge lp://staging/~ltrager/maas-image-builder/update_ks into lp://staging/maas-image-builder/0.9
Proposed by
Lee Trager
Status: | Rejected |
---|---|
Rejected by: | Blake Rouse |
Proposed branch: | lp://staging/~ltrager/maas-image-builder/update_ks |
Merge into: | lp://staging/maas-image-builder/0.9 |
Diff against target: |
6442 lines (+3545/-2237) 49 files modified
.bzrignore (+2/-16) LICENSE (+1/-1) Makefile (+10/-110) README (+9/-2) buildout.cfg (+0/-49) contrib/centos/centos6/centos6-amd64.ks (+75/-123) contrib/centos/centos6/curtin/curtin-hooks (+0/-342) contrib/centos/centos6/curtin/curtin-hooks.py (+342/-0) contrib/centos/centos6/curtin/finalize (+0/-100) contrib/centos/centos6/curtin/finalize.py (+99/-0) contrib/centos/centos6/curtin/python_wrapper (+11/-0) contrib/centos/centos7/centos7-amd64.ks (+93/-70) contrib/centos/centos7/curtin/curtin-hooks (+0/-333) contrib/centos/centos7/curtin/curtin-hooks.py (+338/-0) contrib/centos/centos7/curtin/finalize (+0/-100) contrib/centos/centos7/curtin/finalize.py (+100/-0) contrib/centos/centos7/curtin/python_wrapper (+11/-0) contrib/rhel/rhel7-amd64.ks (+128/-0) contrib/windows/Autounattend.xml (+148/-0) contrib/windows/curtin/curtin-hooks (+1/-0) contrib/windows/curtin/finalize.py (+165/-0) contrib/windows/curtin/python_wrapper (+11/-0) contrib/windows/scripts/firstlogon.ps1 (+104/-0) contrib/windows/scripts/logon.ps1 (+124/-0) debian/changelog (+49/-0) debian/control (+18/-11) debian/python3-mib.install (+1/-1) debian/rules (+4/-4) pylintrc (+425/-0) required-packages/base (+6/-1) required-packages/dev (+1/-16) requirements.txt (+2/-0) scripts/maas-image-builder (+42/-3) setup.py (+64/-35) src/mib/__init__.py (+41/-8) src/mib/builders/__init__.py (+64/-42) src/mib/builders/centos.py (+94/-27) src/mib/builders/rhel.py (+187/-0) src/mib/builders/windows.py (+497/-0) src/mib/core.py (+45/-9) src/mib/net.py (+42/-8) src/mib/parser.py (+42/-7) src/mib/utils.py (+86/-32) src/mib/virt.py (+48/-12) test_requirements.txt (+2/-0) tox.ini (+13/-0) utilities/format-imports (+0/-421) utilities/python_standard_libs.py (+0/-321) versions.cfg (+0/-33) |
To merge this branch: | bzr merge lp://staging/~ltrager/maas-image-builder/update_ks |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Blake Rouse (community) | Disapprove | ||
Review via email: mp+325576@code.staging.launchpad.net |
Commit message
Cleanup and standardize all kickstart config files.
To post a comment you must log in.
Unmerged revisions
- 55. By Lee Trager
-
Clean up kickstart files
- 54. By Blake Rouse
-
Fix release 1.0.5 revision number.
- 53. By Blake Rouse
-
Release 1.0.5.
- 52. By Blake Rouse
-
Only allow VNC to windows build locally.
- 51. By Blake Rouse
-
Make kpartx_del handle failure and retry for up to 10 seconds.
- 50. By Blake Rouse
-
Fix --windows-drivers to work.
- 49. By Blake Rouse
-
Fix PEP8 errors in CentOS curtin hooks.
- 48. By Blake Rouse
-
Update changelog for 1.0.4 release.
- 47. By Blake Rouse
-
Modify RHEL to use the CentOS Curtin hooks.
- 46. By Blake Rouse
-
Allow customization of CentOS and RHEL images
Adds the --custom-kickstart flag to the centos and rhel commands. This command allows a user to specify a custom kickstart file which is run after the builtin one runs.
This is into the wrong code repository. This project has also switched to git, please update this branch to merge into the git repo.