From 23d1dfbdbebed764a0b421c1ddd40af6f357621f Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 19 Feb 2016 22:53:13 +0000 Subject: [PATCH] No return value check on gnusocial due to expected warnings --- src/freedombone | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/freedombone b/src/freedombone index 32ea8bd5..40e44ea6 100755 --- a/src/freedombone +++ b/src/freedombone @@ -8811,11 +8811,12 @@ function install_gnu_social { --admin-pass="$MICROBLOG_ADMIN_PASSWORD" \ --site-profile="community" \ --ssl=${gnu_social_ssl} - if [ ! "$?" = "0" ]; then - # failed to install - echo $'Could not install GNU Social' - exit 72357 - fi + # There can be a lot of warnings here so the return value check is disabled + #if [ ! "$?" = "0" ]; then + # # failed to install + # echo $'Could not install GNU Social' + # exit 72357 + #fi # check microblog has a config file microblog_config_file=/var/www/$MICROBLOG_DOMAIN_NAME/htdocs/config.php