13 lines
203 B
Bash
13 lines
203 B
Bash
echo "== Install base utilities =="
|
|
apt-get install -y \
|
|
net-tools \
|
|
htop \
|
|
curl \
|
|
wget \
|
|
git \
|
|
vim \
|
|
gnupg \
|
|
ca-certificates \
|
|
lsb-release
|
|
|
|
echo "== Finished install base utilities ==" |