Clean scripts, remove sudo requirement Add python dependencies Correctly symlink and add poetry Update make clean Add python2 to dependencies Fix pyenv install Use pyenv to install python Update .gitignore Install git and keybase
15 lines
385 B
Bash
15 lines
385 B
Bash
#!/bin/bash
|
|
#
|
|
# Always updates apt, upgrades apt, and installes 00-apt-pkglist
|
|
#
|
|
|
|
# apt update and upgrade non-interactively
|
|
sudo apt-get update -y
|
|
DEBIAN_FRONTEND=noninteractive sudo apt-get \
|
|
-o Dpkg::Options::="--force-confdef" \
|
|
-o Dpkg::Options::="--force-confold" upgrade -y
|
|
|
|
# Package installs
|
|
pkglist=$(cat $install_dir/00-apt-pkglist)
|
|
sudo apt-get install -y $pkglist
|