Skip to content

Commit

Permalink
CTD-549 bump version and changelog for aarch64 fix (#124)
Browse files Browse the repository at this point in the history
* CTD-549 support aarch64 in connectd_installer

* CTD-549 made debug statement conditional on DEBUG variable

* Fixed typo.
  • Loading branch information
Digital-Larry committed Jul 2, 2020
1 parent f4522ab commit 4282532
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion connectd/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: connectd
Version: 2.5.36
Version: 2.5.37
Section: non-free/net
Priority: optional
Homepage: https://remote.it
Expand Down
8 changes: 5 additions & 3 deletions connectd/usr/bin/connectd_control
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ BASEDIR=$CONNECTD_BASEDIR
#set -x

#### Settings #####
VERSION=1.1.16
MODIFIED="June 17, 2020"
VERSION=1.1.17
MODIFIED="July 01, 2020"

#
# Config Dir CONNECTD_DIR is read from connectd_options
Expand Down Expand Up @@ -842,7 +842,9 @@ sendDeviceInfo()
data='{"BulkIdentificationCode" : "'$bulk_id_code'", "HardwareId" : "'$hardware_id'", "MACAddress" : "'$hw_mac'", "CPUId" : "'$cpu'", "OSLabel" : "'$os'", "R3Package" : "'$r3'", "TCPServiceList" : "'$tcp'"}'
fi
echo "DEBUG: $data"
if [ "$DEBUG" = "1" ]; then
echo "DEBUG: $data"
fi
resp=$(curl ${CURL_OPTS} POST -H "content-type:application/json" --data "$data" $DeviceInformationURL )
status=$(jsonval "$resp" "status")
Expand Down
Binary file modified connectd/usr/share/doc/connectd/changelog.gz
Binary file not shown.

0 comments on commit 4282532

Please sign in to comment.