From afcdcc8ec0c1ea68cf6075691d1b688e0cae3e97 Mon Sep 17 00:00:00 2001 From: Neha Naithani Date: Fri, 19 Feb 2021 12:10:42 +1300 Subject: [PATCH] Updated agent and iofogctl version --- CHANGELOG-2.0.md | 7 +++++++ bootstrap.sh | 4 ++-- start.sh | 2 +- utils.sh | 6 +++--- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG-2.0.md b/CHANGELOG-2.0.md index ff758b5..03c3779 100644 --- a/CHANGELOG-2.0.md +++ b/CHANGELOG-2.0.md @@ -1,3 +1,10 @@ + +## v2.0.4 +* Update iofogctl, controller and agent version + +## v2.0.3 +* Update iofogctl, controller and agent version + ## v2.0.2 * Update iofogctl, controller and agent version diff --git a/bootstrap.sh b/bootstrap.sh index 19c87d7..c21f620 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -53,11 +53,11 @@ install_iofogctl(){ case "$DIST" in *ubuntu*|*debian*|*raspbian*) curl https://packagecloud.io/install/repositories/iofog/iofogctl/script.deb.sh | sudo bash - sudo apt-get install iofogctl=2.0.2 + sudo apt-get install iofogctl=2.0.4 ;; *fedora*|*centos*) curl https://packagecloud.io/install/repositories/iofog/iofogctl/script.rpm.sh | sudo bash - sudo yum install iofogctl-2.0.2-1.x86_64 + sudo yum install iofogctl-2.0.4-1.x86_64 ;; *) echo "Failed to install iofogctl" diff --git a/start.sh b/start.sh index 2f87712..b0d61fe 100755 --- a/start.sh +++ b/start.sh @@ -84,7 +84,7 @@ startEnvironment() { ENVIRONMENT='' IOFOG_BUILD_NO_CACHE='' -AGENT_IMAGE='docker.io/iofog/agent:2.0.2' +AGENT_IMAGE='docker.io/iofog/agent:2.0.4' CONTROLLER_IMAGE='docker.io/iofog/controller:2.0.1' while [[ "$#" -ge 1 ]]; do case "$1" in diff --git a/utils.sh b/utils.sh index 57844d2..a0cd817 100755 --- a/utils.sh +++ b/utils.sh @@ -26,7 +26,7 @@ checkForDebug() { # Display a nice title line for any output. You can optionally populate it with a string # # Usage: prettyTitle "Bootstrapping ioFog" -# + prettyTitle() { echoInfo "## $1 ####################################################" } @@ -38,7 +38,7 @@ prettyTitle() { # prettyHeader() { echoInfo "## $1 ####################################################" - echoInfo "## Copyright (C) 2020, Edgeworx, Inc." + echoInfo "## Copyright (C) 2021, Edgeworx, Inc." echo } @@ -106,7 +106,7 @@ versionCompare() { } checkIofogctl() { - IOFOGCTL_MINIMAL_VERSION="2.0.2" + IOFOGCTL_MINIMAL_VERSION="2.0.4" if [[ -z "$(command -v iofogctl)" ]] ; then echoError "iofogctl not found!" exit 1;