From d53b44b954e6d0ba5cdda043eb37306f6da0056f Mon Sep 17 00:00:00 2001 From: SVNET Date: Thu, 9 Jul 2020 18:06:21 +0200 Subject: [PATCH] Hook d'installation Yunohost --- config/hooks/live/0200-yunohost.hook.chroot | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 config/hooks/live/0200-yunohost.hook.chroot diff --git a/config/hooks/live/0200-yunohost.hook.chroot b/config/hooks/live/0200-yunohost.hook.chroot new file mode 100755 index 0000000..edb8ae0 --- /dev/null +++ b/config/hooks/live/0200-yunohost.hook.chroot @@ -0,0 +1,9 @@ +#!/bin/bash + +set -e + +wget -O /usr/local/bin/yunohost-install https://raw.githubusercontent.com/YunoHost/install_script/buster-unstable/install_yunohost +chmod +x /usr/local/bin/yunohost-install +/usr/local/bin/yunohost-install -a + +exit 0