From b713ccfb2bbbda61ec0bad9a3f52244980342ba3 Mon Sep 17 00:00:00 2001 From: Ximi1970 Date: Thu, 16 Apr 2020 13:01:18 +0200 Subject: [PATCH] Check if dconf exists --- dist/deb/debian.postinst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dist/deb/debian.postinst b/dist/deb/debian.postinst index f02e330..434bdca 100644 --- a/dist/deb/debian.postinst +++ b/dist/deb/debian.postinst @@ -64,4 +64,7 @@ EOF fi -dconf update +which dconf > /dev/null 2>&1 +if [ "$?" = "0" ] ; then + dconf update +fi