15 lines
330 B
Bash
15 lines
330 B
Bash
#!/bin/bash
|
|
|
|
echo "-indev $(pwd)/boot.iso"
|
|
echo "-outdev $(pwd)/output/@IMAGE_NAME@-@IMAGE_TAG@.iso"
|
|
echo "-boot_image any replay"
|
|
echo "-joliet on"
|
|
echo "-compliance joliet_long_names"
|
|
cd container
|
|
for file in $(find @IMAGE_NAME@-@IMAGE_TAG@); do
|
|
echo "-map $(pwd)/${file} ${file}"
|
|
echo "-chmod 0444 ${file}"
|
|
done
|
|
echo "-end"
|
|
|