diff --git a/install b/install index cc1f786..b517254 100644 --- a/install +++ b/install @@ -1 +1,21 @@ -#!/bin/bash \ No newline at end of file +#!/bin/bash + +# Retrieve arguments +domain=$1 +path=$2 + +# Check domain/path availability +sudo yunohost app checkurl $domain$path -a yourls +if [[ ! $? -eq 0 ]]; then +exit 1 +fi + +# Copy files to the right place +final_path=/var/www/yourls +sudo mkdir -p $final_path +sudo cp -a ../sources/* $final_path + +# Set permissions +sudo chown -R www-data: $final_path + +pwd \ No newline at end of file