update settings.php to use shop.fsf.org as baseurl
[eostre.git] / drupal-configs / dbd-autobuild / files / install-packages.sh
1 #!/bin/bash -xe
2
3 apt 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
10 for 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
12 done