2019-12-13 09:48:00 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
################################################################################
|
|
|
|
|
## File: preparemetadata.sh
|
|
|
|
|
## Desc: This script adds a image title information to the metadata
|
|
|
|
|
## document
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
source $HELPER_SCRIPTS/document.sh
|
|
|
|
|
|
2020-04-29 22:11:58 +07:00
|
|
|
WriteItem "<!--- DO NOT EDIT - This markdown file is autogenerated. -->"
|
2020-07-28 10:18:33 +00:00
|
|
|
|
2020-08-06 15:12:04 +03:00
|
|
|
if [ $ANNOUNCEMENTS ]; then
|
|
|
|
|
WriteItem $ANNOUNCEMENTS
|
|
|
|
|
WriteItem "***"
|
|
|
|
|
fi
|
|
|
|
|
|
2020-07-28 10:18:33 +00:00
|
|
|
|
2020-01-08 07:56:32 -05:00
|
|
|
AddTitle "$(lsb_release -ds)"
|
|
|
|
|
WriteItem "The following software is installed on machines with the $IMAGE_VERSION update."
|
2019-12-13 09:48:00 -05:00
|
|
|
WriteItem "***"
|