diff --git a/CHANGELOG.md b/CHANGELOG.md index a088808..a83f284 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,19 +5,29 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [0.2.2] - 2018-06-01 +### Added +* caching +* custom preseed +* preseed merge +### Fixed +* chown bugs +* postinstall script + + ## [0.2.1] - 2018-05-31 ### Added -- Caching +* caching ## [0.2.0] - 2018-05-25 ### Added -- Keyring builder -- Package extras +* keyring builder +* package extras ## [0.1.0] - 2018-05-24 ### Added -- Beta release +* beta release ## [0.0.1] - 2018-05-30 ### Added -- Initial commit +* initial commit diff --git a/forkbuntu/preseed.seed b/forkbuntu/preseed.seed index f828f18..cfc0837 100644 --- a/forkbuntu/preseed.seed +++ b/forkbuntu/preseed.seed @@ -30,8 +30,8 @@ d-i pkgsel/include string \ {% endfor %} {% endif %}# Post install d-i preseed/late_command string \ - rsync /cdrom/scripts /target/root --chmod=ugo+rwx - # chroot /target bash /root/scripts/run_postinstall.sh + cp -r /cdrom/scripts /target/root && \ + chroot /target bash /root/scripts/run_postinstall.sh # Network configuration d-i netcfg/get_hostname string {{ hostname }} diff --git a/setup.py b/setup.py index 5aa3fdf..e85a0ad 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name='forkbuntu', - version='0.2.1', + version='0.2.2', description='Easily create your own ubuntu distribution and install cd',