diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2009-07-02 21:33:51 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2009-07-02 21:33:51 +0100 |
commit | 7d3cccb66df63815f8230009b8d2fdf8965fbaa8 (patch) | |
tree | f3c576ddb70e7d637942ee3d61abc66ee024d660 /appliance/update.sh.in | |
parent | 373a9ad0abb09ee079da834d251a744cdbe9ae70 (diff) | |
download | libguestfs-7d3cccb66df63815f8230009b8d2fdf8965fbaa8.tar.gz libguestfs-7d3cccb66df63815f8230009b8d2fdf8965fbaa8.tar.xz libguestfs-7d3cccb66df63815f8230009b8d2fdf8965fbaa8.zip |
Don't rebuild the whole appliance if just the /init script has been changed.
Diffstat (limited to 'appliance/update.sh.in')
-rwxr-xr-x | appliance/update.sh.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/appliance/update.sh.in b/appliance/update.sh.in index 4fbd6517..01e22b60 100755 --- a/appliance/update.sh.in +++ b/appliance/update.sh.in @@ -16,8 +16,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -# Update the daemon inside an existing initramfs. Avoids the -# timeconsuming rebuild. +# Update the init script or daemon inside an existing initramfs. +# Avoids the timeconsuming rebuild. unset CDPATH @@ -27,6 +27,9 @@ if [ "@DIST@" = "REDHAT" ]; then cd @top_builddir@ output=appliance/initramfs.@REPO@.@host_cpu@.img + # Create the init script. + @FEBOOTSTRAP_INSTALL@ initramfs appliance/init /init 0755 root.root + # Copy the daemon into the filesystem. @FEBOOTSTRAP_INSTALL@ initramfs daemon/guestfsd /sbin/guestfsd 0755 root.root |