From 4a38985a785ce63b38ecae56378dbbdf4c70f45b Mon Sep 17 00:00:00 2001 From: Nico Melone Date: Wed, 13 Oct 2021 10:02:27 -0500 Subject: [PATCH] added timezone and zip installation --- hp_iot_edge_init.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hp_iot_edge_init.sh b/hp_iot_edge_init.sh index f65b636..8694e7b 100644 --- a/hp_iot_edge_init.sh +++ b/hp_iot_edge_init.sh @@ -1,9 +1,14 @@ +echo "--------Changing Timezone--------" +sudo timedatectl set-timezone America/Chicago echo "--------Installing Java--------" sudo apt update -y sudo apt install default-jdk -y echo "--------Java Version--------" java -version +echo "--------Installing zip/unzip--------" +sudo apt install zip -y + echo "--------Switching Python 3 to default Python--------" sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.7 2