From 790d573aa53a5a69cae25a7261d3b42e65b7744a Mon Sep 17 00:00:00 2001 From: SVNET Date: Sat, 11 Jul 2020 20:31:22 +0200 Subject: [PATCH] seafile-gui --- config/hooks/live/0200-seafile.hook.chroot | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 config/hooks/live/0200-seafile.hook.chroot diff --git a/config/hooks/live/0200-seafile.hook.chroot b/config/hooks/live/0200-seafile.hook.chroot new file mode 100755 index 0000000..42d3cc6 --- /dev/null +++ b/config/hooks/live/0200-seafile.hook.chroot @@ -0,0 +1,9 @@ +#!/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