diff --git a/stage3/00-install-yunohost/files/check_yunohost_is_installed.sh b/stage3/00-install-yunohost/files/check_yunohost_is_installed.sh index 45cdf00..d1e6cea 100644 --- a/stage3/00-install-yunohost/files/check_yunohost_is_installed.sh +++ b/stage3/00-install-yunohost/files/check_yunohost_is_installed.sh @@ -1,6 +1,13 @@ #!/bin/sh if [ -n "$BASH_VERSION" ] && [ "$-" != "${-#*i}" ]; then + + # Trigger resize2fs_once in case it wasnt triggered so far ... + if [ -f "/etc/init.d/resize2fs_once" ]; + then + systemctl restart resize2fs_once + fi + if [ ! -f "/etc/yunohost/installed" ]; then normal=$(printf '\033[0m')