adding files to git
[eostre.git] / files / install-packages.sh
... / ...
CommitLineData
1#!/bin/bash -xe
2
3apt update -y && apt upgrade -y
4
5# actually don't because it seems we don't need it. yet
6## add the php5 repo
7#add-apt-repository -y ppa:ondrej/php
8#apt update -y && apt upgrade -y
9
10for PKG in $(cat /pkgs); do
11 apt install -y $PKG ||: # never fail to install a package, because some packages' postinstall hooks fail when /dev /proc /run etc aren't mounted
12done