svprognu/config/hooks/live/0200-seafile.hook.chroot

10 lines
259 B
Plaintext
Raw Normal View History

2020-07-11 20:31:22 +02:00
#!/bin/bash
wget -O - http://linux-clients.seafile.com/seafile.key | apt-key add -
echo 'deb [arch=amd64] http://linux-clients.seafile.com/seafile-deb/buster/ stable main' > /etc/apt/sources.list.d/seafile.list
apt update
apt install -y seafile-gui
exit 0