Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get files in quiet mode #182

Merged
merged 1 commit into from
Oct 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion poc-cb-net/scripts/build-and-run-agent-in-the-background.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ echo "Step 1-4: Install and setup Golang ${GOLANG_VERSION}"
# Install golang by apt
# Install Go
if [ ! -d /usr/local/go ]; then
wget https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz
wget -q https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz
ls -al go${GOLANG_VERSION}.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go${GOLANG_VERSION}.linux-amd64.tar.gz
# Set Go env (for next interactive shell)
echo "export PATH=\${PATH}:/usr/local/go/bin" >> ${HOME}/.bashrc
Expand Down
3 changes: 2 additions & 1 deletion poc-cb-net/scripts/build-and-run-agent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ echo "Step 1-4: Install and setup Golang ${GOLANG_VERSION}"
# Install golang by apt
# Install Go
if [ ! -d /usr/local/go ]; then
wget https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz
wget -q https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz
ls -al go${GOLANG_VERSION}.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go${GOLANG_VERSION}.linux-amd64.tar.gz
# Set Go env (for next interactive shell)
echo "export PATH=\${PATH}:/usr/local/go/bin" >> ${HOME}/.bashrc
Expand Down
3 changes: 2 additions & 1 deletion poc-cb-net/scripts/get-and-run-agent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ cd ~/cb-network-agent


# Get the execution file of the cb-network agent 0.0.6
wget https://github.com/cloud-barista/cb-larva/releases/download/v0.0.6/agent
wget -q https://github.com/cloud-barista/cb-larva/releases/download/v0.0.6/agent
ls -al agent

# Change mode
chmod 755 agent
Expand Down