ca857a032a
refactored: Dockefile template refactor: example and move src/ there a simple example new: distros.csv holds table of valid distros, their images and install/update commands refactor: various fixes and adjustment in response to above refactor: help vastly improved and updated
10 lines
No EOL
348 B
Bash
Executable file
10 lines
No EOL
348 B
Bash
Executable file
#!/bin/bash
|
|
if [[ -f /opt/image.info ]]; then
|
|
echo -e "\n--------- image info found at /opt/image.info----------"
|
|
cat /opt/image.info
|
|
echo -e "\n****************************"
|
|
else
|
|
echo no image information found at /opt/image.info
|
|
echo "you can place one at 'init/image.info' in your source (src) directory"
|
|
echo "to be included in the image"
|
|
fi |