Allow absolute path to image with ironic-agent
The element was prepending the work directory forcibly, which will have problems when the image name has an absolute path, which is allowed. Change-Id: I0cb7b96e24daab8ee73611936af72074c70ac1aa Closes-Bug: #1400405
This commit is contained in:
parent
2dfb931d95
commit
4dceacd5ed
@ -7,14 +7,14 @@ set -o pipefail
|
||||
|
||||
source $_LIB/img-functions
|
||||
|
||||
WORKDIR=$(pwd)
|
||||
IMAGE_PATH=$(readlink -f $IMAGE_NAME)
|
||||
cd $TARGET_ROOT
|
||||
|
||||
echo "#disabled" > ./tmp/fstab.new
|
||||
sudo mv ./tmp/fstab.new ./etc/fstab
|
||||
sudo ln -s ./sbin/init ./
|
||||
|
||||
sudo find . -path ./sys -prune -o -path ./proc -prune -o -print | sudo cpio -o -H newc | gzip > $WORKDIR/$IMAGE_NAME.initramfs
|
||||
sudo find . -path ./sys -prune -o -path ./proc -prune -o -print | sudo cpio -o -H newc | gzip > ${IMAGE_PATH}.initramfs
|
||||
|
||||
select_boot_kernel_initrd $TARGET_ROOT
|
||||
sudo cp $BOOTDIR/$KERNEL $WORKDIR/$IMAGE_NAME.vmlinuz
|
||||
sudo cp $BOOTDIR/$KERNEL ${IMAGE_PATH}.vmlinuz
|
||||
|
Loading…
Reference in New Issue
Block a user