[gns3]: modify SONiC VS image name (#13136)

Modified sonic.gns3.sh file by changing name of VS image from "image" to "img"
This commit is contained in:
Rida Hanif 2023-01-03 23:02:10 +05:00 committed by GitHub
parent e7600ff79d
commit f1e84f9cd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,12 @@
#!/bin/bash
# This script creates a .gns3a SONiC appliance file
IMGFILE="sonic-vs.image"
IMGFILE="sonic-vs.img"
RELEASE="latest"
usage() {
echo "`basename $0` [ -r <ReleaseNumber> ] -b <SONiC VS image: sonic-vs.image>"
echo "e.g.: `basename $0` -r 1.1 -b <store_path>/sonic-vs.image"
echo "`basename $0` [ -r <ReleaseNumber> ] -b <SONiC VS image: sonic-vs.img>"
echo "e.g.: `basename $0` -r 1.1 -b <store_path>/sonic-vs.img"
exit 0
}