diff --git a/scripts/install b/scripts/install new file mode 100644 index 0000000..45189c3 --- /dev/null +++ b/scripts/install @@ -0,0 +1,15 @@ +set -e + +# Retrieve arguments +domain=$1 +path=$2 + +# Check domain/path availability +sudo yunohost app checkurl $domain$path -a noalyss +if [[ ! $? -eq 0 ]]; then + exit 1 +fi + +path=${path%/} + +sudo yunohost app setting dolibarr version -v "3.8.0"