37 lines
1.1 KiB
Bash
Executable file
37 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
curl https://download.nextcloud.com/server/releases/nextcloud-19.0.0.zip > /tmp/nextcloud.zip
|
|
cd /var/www
|
|
unzip /tmp/nextcloud.zip
|
|
rm /tmp/nextcloud.zip
|
|
mv html html.old
|
|
mv nextcloud html
|
|
|
|
cd html
|
|
mkdir data
|
|
|
|
cd apps
|
|
wget https://github.com/nextcloud/tasks/releases/download/v0.13.1/tasks.tar.gz
|
|
tar xf tasks.tar.gz
|
|
wget https://github.com/nextcloud/maps/releases/download/v0.1.6/maps-0.1.6.tar.gz
|
|
tar xf maps-0.1.6.tar.gz
|
|
wget https://github.com/nextcloud/calendar/releases/download/v2.0.3/calendar.tar.gz
|
|
tar xf calendar.tar.gz
|
|
wget https://github.com/nextcloud/news/releases/download/14.1.11/news.tar.gz
|
|
tar xf news.tar.gz
|
|
wget https://github.com/nextcloud/notes/releases/download/v3.6.0/notes.tar.gz
|
|
tar xf notes.tar.gz
|
|
wget https://github.com/nextcloud/contacts/releases/download/v3.3.0/contacts.tar.gz
|
|
tar xf contacts.tar.gz
|
|
wget https://github.com/nextcloud/mail/releases/download/v1.4.0/mail.tar.gz
|
|
tar xf mail.tar.gz
|
|
wget https://github.com/nextcloud/groupfolders/releases/download/v6.0.6/groupfolders.tar.gz
|
|
tar xf groupfolders.tar.gz
|
|
rm *.tar.gz
|
|
|
|
chown -R www-data:www-data /var/www/html
|
|
|
|
cd /var/www/html
|
|
php occ
|