From 009fe2f6372faf503e1cd602fc3649b4c41e00a5 Mon Sep 17 00:00:00 2001 From: kload Date: Sat, 31 Oct 2015 14:26:11 +0100 Subject: [PATCH] [fix] Force hook execution when YunoHost is not configured --- debian/postinst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/postinst b/debian/postinst index 5a2c03ec1..de714208b 100644 --- a/debian/postinst +++ b/debian/postinst @@ -6,10 +6,10 @@ do_configure() { rm -rf /var/cache/moulinette/* if [ ! -f /etc/yunohost/installed ]; then - bash /usr/share/yunohost/hooks/conf_regen/01-yunohost - bash /usr/share/yunohost/hooks/conf_regen/02-ssl - bash /usr/share/yunohost/hooks/conf_regen/06-slapd - bash /usr/share/yunohost/hooks/conf_regen/15-nginx + bash /usr/share/yunohost/hooks/conf_regen/01-yunohost True + bash /usr/share/yunohost/hooks/conf_regen/02-ssl True + bash /usr/share/yunohost/hooks/conf_regen/06-slapd True + bash /usr/share/yunohost/hooks/conf_regen/15-nginx True else yunohost service regenconf fi