Skip to content
Snippets Groups Projects
Commit 71c4a04a authored by Bob Mottram's avatar Bob Mottram
Browse files

Note about enabling ssh access

parent 6be6da8f
No related branches found
No related tags found
No related merge requests found
...@@ -696,36 +696,19 @@ cd "${CURR_DIR}" || exit 28 ...@@ -696,36 +696,19 @@ cd "${CURR_DIR}" || exit 28
clear clear
if [[ $VARIANT != 'meshclient' && $VARIANT != 'meshusb' && $VARIANT != 'mesh' ]]; then if [[ $VARIANT != 'meshclient' && $VARIANT != 'meshusb' && $VARIANT != 'mesh' ]]; then
echo $" if [[ $IMAGE_TYPE == "qemu"* ]]; then
Image was created. if [[ $IMAGE_TYPE != "qemu-x86_64"* && $IMAGE_TYPE != "qemu-amd64"* ]]; then
echo "qemu-system-i386 -m ${VM_MEMORY} $(ls ${PROJECT_NAME}*.qcow2)"
You will be able to log into it with:
"
if [[ $IMAGE_TYPE != "qemu"* ]]; then
echo $" ssh $USERNAME@$DEFAULT_DOMAIN_NAME -p $SSH_PORT
Password: $PASSWORD
"
else
if [[ $IMAGE_TYPE != "qemu"* ]]; then
echo $" Username: $USERNAME
Password: $PASSWORD
"
else else
if [[ $IMAGE_TYPE != "qemu-x86_64"* && $IMAGE_TYPE != "qemu-amd64"* ]]; then echo "qemu-system-x86_64 -m ${VM_MEMORY} $(ls ${PROJECT_NAME}*.qcow2)"
echo "qemu-system-i386 -m ${VM_MEMORY} $(ls ${PROJECT_NAME}*.qcow2)"
else
echo "qemu-system-x86_64 -m ${VM_MEMORY} $(ls ${PROJECT_NAME}*.qcow2)"
fi
echo $"
Username: $USERNAME
Password: $PASSWORD
"
fi fi
fi fi
else else
echo $" echo $"
Image was created. Image was created.
If necessary, ssh access can be enabled from the settings screen of the web interface.
" "
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment