Merge "Adds support for post-install scripts."

This commit is contained in:
Jenkins 2013-04-22 22:18:25 +00:00 committed by Gerrit Code Review
commit 0a1bf74c32
3 changed files with 13 additions and 0 deletions

View File

@ -156,6 +156,12 @@ part of the process you need to customise:
install packages, chain into configuration management tools or do other
image specific operations.
* post-install.d: Run code in the chroot. This is a good place to perform
tasks you want to handle after the OS/application install but before the
first boot of the image. Some examples of use would be: Run chkconfig
to disable unneeded services and clean the cache left by the package
manager to reduce the size of the image.
* first-boot.d: Runs inside the image before rc.local. Scripts from here are
good for doing per-instance configuration based on cloud metadata.

View File

@ -117,6 +117,7 @@ run_d_in_target pre-install
do_extra_package_install
# Call install scripts to pull in the software users want.
run_d_in_target install
run_d_in_target post-install
prepare_first_boot
finalise_base
unmount_image

View File

@ -0,0 +1,6 @@
#!/bin/bash
# Do an apt-get clean. This will free some space.
set -e
apt-get clean