diff options
author | Sven Gothel <[email protected]> | 2013-06-06 02:08:35 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-06-06 02:08:35 +0200 |
commit | cafd69db21cd732f60f114ed00509bd83fcc1f8c (patch) | |
tree | 3c3e61a3a0ee5867d48df9b0a71326a1c82b71da /server/setup/03-apt-install/xx-apt-install.sh | |
parent | e805a0236bcaa21a7f125b34115da2dc5797294b (diff) |
server APK packages install
Diffstat (limited to 'server/setup/03-apt-install/xx-apt-install.sh')
-rw-r--r-- | server/setup/03-apt-install/xx-apt-install.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/server/setup/03-apt-install/xx-apt-install.sh b/server/setup/03-apt-install/xx-apt-install.sh new file mode 100644 index 0000000..7b29773 --- /dev/null +++ b/server/setup/03-apt-install/xx-apt-install.sh @@ -0,0 +1,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 |