1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flohmarkt_ynh.git synced 2024-09-03 18:36:30 +02:00

improve error message

This commit is contained in:
Chris Vogel 2024-04-17 15:10:30 +02:00
parent 0745dedaf1
commit 7c050d2b89

View file

@ -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