github.com/true-sqn/fabric@v2.1.1+incompatible/vagrant/essentials.sh (about) 1 #!/bin/bash -eu 2 # 3 # Copyright IBM Corp. All Rights Reserved. 4 # 5 # SPDX-License-Identifier: Apache-2.0 6 7 export DEBIAN_FRONTEND=noninteractive 8 9 # ---------------------------------------------------------------- 10 # Update the entire system to the latest versions 11 # ---------------------------------------------------------------- 12 apt-get clean && apt-get -qq update && apt-get upgrade -y 13 14 # ---------------------------------------------------------------- 15 # Install some basic utilities 16 # ---------------------------------------------------------------- 17 apt-get install -y \ 18 apt-transport-https \ 19 build-essential \ 20 ca-certificates \ 21 curl \ 22 g++ \ 23 git \ 24 jq \ 25 libtool \ 26 make \ 27 unzip