Issue
The ConfigureOS transaction fails:
Unable to find file *.xen to copy.
CODE
Resolution
To fix this issue:
- Navigate to the template directory in the cloud.
- Create a temporary folder, such as
temp
, and move the template file to this directory. Change to the temporary directory and untar the template. For example:
tar -xzvf file_name.tar.gz
CODE
Once the file untars, run the following commands:
cp boot/grub/grub.conf boot/grub/grub.conf.xen
cp etc/fstab etc/fstab.xen
cp etc/grub.conf etc/grub.conf.xen
CODE
Delete the old template file from the temp
folder.
Tar the file again:
tar -czvf file_name.tar.gz *
CODE
- Move the file back to the template directory. The
temp
folder and its contents can be removed.