summaryrefslogtreecommitdiffstats
path: root/server/setup/03-apt-install/xx-apt-install.sh
blob: 7b297731b854821b56e491906a9e19b2cce29306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

rm -f xx-apt-install.log

for i in 01-apt-basics.lst \
         02-apt-java.lst \
         03-apt-perl.lst \
         04-apt-mysql.lst \
         05-apt-mail.txt \
         06-apt-web.lst \
         ; do
    apt-get --assume-yes -q install `cat $i` 2>&1 | tee -a xx-apt-install.log
done