Skip to content

Commit

Permalink
Merge pull request #56 from weka-io/agent-install-curl-silent
Browse files Browse the repository at this point in the history
agent_installation: remove silent mode when using curl
  • Loading branch information
assafgi authored Nov 10, 2019
2 parents d7688f5 + 7aa5e63 commit df989f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions talker_agent/install_agent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ if [ "$DOWNLOAD_TALKER" = true ] ; then

sudo mkdir -p /root/talker
cd /root/talker
curl -sfL https://github.com/weka-io/talker/raw/"$git_version"/talker_agent/talker-service > talker-service
curl -sfL https://github.com/weka-io/talker/raw/"$git_version"/talker_agent/talker.py > talker.py
curl -fL https://github.com/weka-io/talker/raw/"$git_version"/talker_agent/talker-service > talker-service
curl -fL https://github.com/weka-io/talker/raw/"$git_version"/talker_agent/talker.py > talker.py
chmod +x talker.py
fi

echo "$TALKER_AGENT_VERSION" > version

# Add redis py dependency
REDIS_COMMIT_ID=ad84781ea260be0a1ca4bf6768959b50e8835a6b
curl -sfL https://github.com/weka-io/redis-py/archive/"$REDIS_COMMIT_ID".tar.gz | tar -xz
curl -fL https://github.com/weka-io/redis-py/archive/"$REDIS_COMMIT_ID".tar.gz | tar -xz
mv redis-py-"$REDIS_COMMIT_ID"/redis .
rm -rf redis-py-"$REDIS_COMMIT_ID"

0 comments on commit df989f6

Please sign in to comment.