16 lines
261 B
Bash
16 lines
261 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "Installing required system packages"
|
||
|
apt-get update -qq --allow-releaseinfo-change
|
||
|
apt-get install -qq -y \
|
||
|
apt-transport-https \
|
||
|
ca-certificates \
|
||
|
git \
|
||
|
curl \
|
||
|
wget \
|
||
|
vim \
|
||
|
gnupg2 \
|
||
|
fzf \
|
||
|
software-properties-common
|
||
|
|