Fix readme

This commit is contained in:
notplants 2021-02-15 10:40:22 +01:00
parent 5e3a0c6e8d
commit 4fc3a074a0
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ This script requires the latest version of vmdb2 which is not currently availabl
After installing the above, clone the vmdb2 repository and add it to your path.
```shell
git clone https://gitlab.com/larswirzenius/vmdb2.git
cd vmdb2; ln -s vmdb2 /usr/local/bin/vmdb2
cd vmdb2; ln -s ${PWD}/vmdb2 /usr/local/bin/vmdb2
```
## To Build A New Image

View File

@ -4,9 +4,9 @@ rm -f raspi_3.log
make raspi_3.img
# copy to releases
echo "++ successful image build, copying output to releases"
TODAY=$(date +"%y%m%d")
TODAY=$(date +"%Y%m%d")
RELEASE_DIR=/var/www/releases.peachcloud.org/html/peach-imgs/$TODAY
echo "++ successful image build, copying output to ${RELEASE_DIR}"
mkdir -p $RELEASE_DIR
cp raspi_3.img $RELEASE_DIR/${TODAY}_peach_raspi3.img
cp raspi_3.log $RELEASE_DIR/${TODAY}_peach_raspi3.log