2020-07-11 20:31:22 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-02-12 23:32:31 +01:00
|
|
|
wget https://linux-clients.seafile.com/seafile.asc -O /usr/share/keyrings/seafile-keyring.asc
|
2022-11-17 19:24:05 +01:00
|
|
|
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/seafile-keyring.asc] https://linux-clients.seafile.com/seafile-deb/bullseye/ stable main' > /etc/apt/sources.list.d/seafile.list
|
2020-07-11 20:31:22 +02:00
|
|
|
|
|
|
|
apt update
|
|
|
|
apt install -y seafile-gui
|
|
|
|
|
|
|
|
exit 0
|