Skip to content

Commit 4282532

Browse files
author
Digital-Larry
authored
CTD-549 bump version and changelog for aarch64 fix (#124)
* CTD-549 support aarch64 in connectd_installer * CTD-549 made debug statement conditional on DEBUG variable * Fixed typo.
1 parent f4522ab commit 4282532

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

connectd/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: connectd
2-
Version: 2.5.36
2+
Version: 2.5.37
33
Section: non-free/net
44
Priority: optional
55
Homepage: https://remote.it

connectd/usr/bin/connectd_control

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ BASEDIR=$CONNECTD_BASEDIR
2828
#set -x
2929

3030
#### Settings #####
31-
VERSION=1.1.16
32-
MODIFIED="June 17, 2020"
31+
VERSION=1.1.17
32+
MODIFIED="July 01, 2020"
3333

3434
#
3535
# Config Dir CONNECTD_DIR is read from connectd_options
@@ -842,7 +842,9 @@ sendDeviceInfo()
842842
data='{"BulkIdentificationCode" : "'$bulk_id_code'", "HardwareId" : "'$hardware_id'", "MACAddress" : "'$hw_mac'", "CPUId" : "'$cpu'", "OSLabel" : "'$os'", "R3Package" : "'$r3'", "TCPServiceList" : "'$tcp'"}'
843843
fi
844844
845-
echo "DEBUG: $data"
845+
if [ "$DEBUG" = "1" ]; then
846+
echo "DEBUG: $data"
847+
fi
846848
847849
resp=$(curl ${CURL_OPTS} POST -H "content-type:application/json" --data "$data" $DeviceInformationURL )
848850
status=$(jsonval "$resp" "status")
24 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)