diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-07-25 08:54:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-07-26 03:46:53 +0000 |
commit | 7e226f60b7a2bd7e854d14b2bfd9729e20b02119 (patch) | |
tree | 31a583f3c5c8438fa51e74310aa911859379e557 /share/doc/examples/container-images.sh | |
parent | Updating container-image example build script for current debian releases. (diff) | |
download | compute-tools-7e226f60b7a2bd7e854d14b2bfd9729e20b02119.tar.xz compute-tools-7e226f60b7a2bd7e854d14b2bfd9729e20b02119.zip |
Renaming container create command to container build.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | share/doc/examples/container-images.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/share/doc/examples/container-images.sh b/share/doc/examples/container-images.sh index 91589b1..9bdd453 100755 --- a/share/doc/examples/container-images.sh +++ b/share/doc/examples/container-images.sh @@ -17,7 +17,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# Description: example for automated Debian base system container image creation +# Description: example for automated Debian base system container image builds # Requires: debootstrap plzip xz-utils sudo # Usage: ./container-images.sh @@ -77,28 +77,28 @@ do ;; esac - echo "Creating ${SYSTEM}.system.tar.${COMPRESSION}" + echo "Building ${SYSTEM}.system.tar.${COMPRESSION}" sudo tar ${TAR_OPTIONS} -cf "${SYSTEM}.system.tar.${COMPRESSION}" "${SYSTEM}" - echo "Creating ${SYSTEM}.system.tar.${COMPRESSION}.sha512" + echo "Building ${SYSTEM}.system.tar.${COMPRESSION}.sha512" sha512sum "${SYSTEM}.system.tar.${COMPRESSION}" > "${SYSTEM}.system.tar.${COMPRESSION}.sha512" if [ -n "${KEY}" ] then - echo "Creating ${SYSTEM}.system.tar.${COMPRESSION}.sign" + echo "Building ${SYSTEM}.system.tar.${COMPRESSION}.sign" gpg -a -b --default-key ${KEY} ${SYSTEM}.system.tar.${COMPRESSION} mv "${SYSTEM}.system.tar.${COMPRESSION}.asc" "${SYSTEM}.system.tar.${COMPRESSION}.sign" fi - echo "Creating ${SYSTEM}.system.tar.${COMPRESSION} symlink" + echo "Building ${SYSTEM}.system.tar.${COMPRESSION} symlink" ln -sf "${SYSTEM}.system.tar.${COMPRESSION}" "$(echo ${SYSTEM}.system.tar.${COMPRESSION} | sed -e "s|${DATE}|current|")" - echo "Creating ${SYSTEM}.system.tar.${COMPRESSION}.sha512 copy" + echo "Building ${SYSTEM}.system.tar.${COMPRESSION}.sha512 copy" sed -e "s|${DATE}|current|" "${SYSTEM}.system.tar.${COMPRESSION}.sha512" > "$(echo ${SYSTEM}.system.tar.${COMPRESSION}.sha512 | sed -e "s|${DATE}|current|")" if [ -e "${SYSTEM}.system.tar.${COMPRESSION}.sign" ] then - echo "Creating ${SYSTEM}.system.tar.${COMPRESSION}.sign copy" + echo "Building ${SYSTEM}.system.tar.${COMPRESSION}.sign copy" cp "${SYSTEM}.system.tar.${COMPRESSION}.sign" "$(echo ${SYSTEM}.system.tar.${COMPRESSION}.sign | sed -e "s|${DATE}|current|")" fi done |