From 7c050d2b89006f77dad1eeeb8d2ee40ddcc6b8bd Mon Sep 17 00:00:00 2001 From: Chris Vogel Date: Wed, 17 Apr 2024 15:10:30 +0200 Subject: [PATCH] improve error message --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 2a220d3..358335e 100755 --- a/scripts/install +++ b/scripts/install @@ -12,7 +12,7 @@ ynh_app_setting_set --app=$app --key=password_couchdb_admin --value="$password_c # check if couchdb is already installed if [[ -e /opt/couchdb ]] || pgrep epmd > /dev/null || pgrep beam.smp || dpkg-query -W couchdb > /dev/null 2>&1; then - ynh_print_err --message="CouchDB already installed on this host - will not proceed." + ynh_die --message="CouchDB already installed on this host - will not proceed." exit 1 fi