Files
dotfiles/install/00-apt.sh
Andrejus 549d6ce88d Merge branch 'install' of https://github.com/andrejusk/dotfiles
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
2020-02-26 14:47:36 +00:00

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