summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-05-25 16:22:06 +0200
committerGitHub <noreply@github.com>2022-05-25 16:22:06 +0200
commite35df0d41d40f08cf23de01d3a1f3194c2e35616 (patch)
tree3e06bc4b1a99d2bfc2d8514806f45dcc0b53d970
parenta24887585cd7ad3814fbb58c91e3223b6cf38ea0 (diff)
Create tedge reference docs and update get-thin-edge_io.sh 0.7.0 (#1165)
* Create tedge cli reference docs * Update get-thin-edge_io.sh Co-authored-by: rina23q <rina23q@users.noreply.github.com> Co-authored-by: Rina Fujino <18257209+rina23q@users.noreply.github.com>
-rw-r--r--docs/src/references/tedge.md2
-rwxr-xr-xget-thin-edge_io.sh12
2 files changed, 9 insertions, 5 deletions
diff --git a/docs/src/references/tedge.md b/docs/src/references/tedge.md
index bbc7cb72..8d617245 100644
--- a/docs/src/references/tedge.md
+++ b/docs/src/references/tedge.md
@@ -1,7 +1,7 @@
# The `tedge` command
```
-tedge 0.6.4
+tedge 0.7.0
tedge is the cli tool for thin-edge.io
USAGE:
diff --git a/get-thin-edge_io.sh b/get-thin-edge_io.sh
index af1757b2..2fcf82df 100755
--- a/get-thin-edge_io.sh
+++ b/get-thin-edge_io.sh
@@ -40,14 +40,18 @@ install_tedge_plugins() {
# Download and install apama plugin
wget https://github.com/thin-edge/thin-edge.io/releases/download/${VERSION}/tedge_apama_plugin_${VERSION}_${ARCH}.deb -P /tmp/tedge
dpkg -i /tmp/tedge/tedge_apama_plugin_${VERSION}_${ARCH}.deb
+
+ # Download and install configuration plugin
+ wget https://github.com/thin-edge/thin-edge.io/releases/download/${VERSION}/c8y_configuration_plugin_${VERSION}_${ARCH}.deb -P /tmp/tedge
+ dpkg -i /tmp/tedge/c8y_configuration_plugin_${VERSION}_${ARCH}.deb
# Download and install c8y log plugin
wget https://github.com/thin-edge/thin-edge.io/releases/download/${VERSION}/c8y_log_plugin_${VERSION}_${ARCH}.deb -P /tmp/tedge
dpkg -i /tmp/tedge/c8y_log_plugin_${VERSION}_${ARCH}.deb
- # Download and install configuration plugin
- wget https://github.com/thin-edge/thin-edge.io/releases/download/${VERSION}/c8y_configuration_plugin_${VERSION}_${ARCH}.deb -P /tmp/tedge
- dpkg -i /tmp/tedge/c8y_configuration_plugin_${VERSION}_${ARCH}.deb
+ # Download and install tedge_watchdog
+ wget https://github.com/thin-edge/thin-edge.io/releases/download/${VERSION}/tedge_watchdog_${VERSION}_${ARCH}.deb -P /tmp/tedge
+ dpkg -i /tmp/tedge/tedge_watchdog_${VERSION}_${ARCH}.deb
}
if [ $# -lt 3 ]; then
@@ -80,7 +84,7 @@ fi
echo "${BLUE}Thank you for trying thin-edge.io! ${COLORRESET}\n"
if [ -z "$VERSION" ]; then
- VERSION=0.6.4
+ VERSION=0.7.0
echo "Version argument has not been provided, installing latest: ${BLUE}$VERSION${COLORRESET}"
echo "To install a particular version use this script with the version as an argument."