13 lines
548 B
Bash
13 lines
548 B
Bash
apt-get update
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
export TZ=Europe/Berlin
|
|
apt-get install -y tzdata z-push apache2
|
|
tar xzf core-11.0.2.50.507cbae-Ubuntu_20.04-amd64.tar.gz
|
|
tar xzf webapp-6.0.0.57.1049268-Ubuntu_20.04-all.tar.gz
|
|
for F in ~/core-11.0.2.50.507cbae-Ubuntu_20.04-amd64/*.deb; do dpkg --unpack --no-triggers $F; done
|
|
for F in ~/webapp-6.0.0.57.1049268-Ubuntu_20.04-all/*.deb; do dpkg --unpack --no-triggers $F; done
|
|
apt-get install -f -y
|
|
# cleanup install
|
|
apt-get clean
|
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.cache ~/.npm
|