1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00

[enh] Clean bash scripts and use wget with -q

This commit is contained in:
Jérôme Lebleu 2016-04-30 23:38:44 +02:00
parent a96a4592cd
commit 96b3b0ae2c
3 changed files with 29 additions and 40 deletions

View file

@ -1,3 +1,5 @@
#!/bin/bash #!/bin/bash
VERSION="1.1.4" VERSION="1.1.4"
JAPPIX_SOURCE_URL="https://github.com/jappix/jappix/archive/${VERSION}.tar.gz"

View file

@ -8,21 +8,16 @@ app=${!#}
# Retrieve arguments # Retrieve arguments
domain=$1 domain=$1
path=$2 path=${2%/}
name=$3 name=$3
language=$4 language=$4
# Check domain/path availability # Check domain/path availability
sudo yunohost app checkurl "${domain}${path}" -a "$app" sudo yunohost app checkurl "${domain}${path}" -a "$app" \
if [[ ! $? -eq 0 ]]; then || exit 1
exit 1
fi
# Remove trailing "/" for next commands
path=${path%/}
# Retrieve sources # Retrieve sources
wget -nv -O jappix.tar.gz https://github.com/jappix/jappix/archive/${VERSION}.tar.gz wget -q -O jappix.tar.gz "$JAPPIX_SOURCE_URL"
# Copy files to the right place # Copy files to the right place
final_path="/var/www/${app}" final_path="/var/www/${app}"
@ -33,25 +28,22 @@ sudo cp ../conf/*.xml "${final_path}/store/conf/"
# Set permissions to jappix directory # Set permissions to jappix directory
sudo chown -R www-data: "$final_path" sudo chown -R www-data: "$final_path"
# Modify Nginx configuration file and copy it to Nginx conf directory # Set and copy NGINX configuraion
sudo sed -i "s@PATHTOCHANGE2@${path}@g" ../conf/nginx.conf sudo sed -i "s@PATHTOCHANGE2@${path}@g" ../conf/nginx.conf
path=${path:-/}
if [ -z "$path" ]; then
path="/"
fi
sudo ls $final_path/i18n/$language > /dev/null 2>&1
if [ $? != 0 ];
then
language="en"
fi
sudo yunohost app setting "$app" name -v "$name"
sudo yunohost app setting "$app" language -v "$language"
sudo sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf sudo sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf
sudo sed -i "s@ALIASTOCHANGE@${final_path}/@g" ../conf/nginx.conf sudo sed -i "s@ALIASTOCHANGE@${final_path}/@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf" sudo cp ../conf/nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
# Validate language
[[ -a "${final_path}/i18n/${language}" ]] \
|| language="en"
# Store app settings
sudo yunohost app setting "$app" name -v "$name"
sudo yunohost app setting "$app" language -v "$language"
# Set Jappix configuration
sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/main.xml" sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/main.xml"
sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/hosts.xml" sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/hosts.xml"
sudo sed -i "s@DOMAINTOCHANGE@${domain}@g" "${final_path}/store/conf/main.xml" sudo sed -i "s@DOMAINTOCHANGE@${domain}@g" "${final_path}/store/conf/main.xml"

View file

@ -1,5 +1,7 @@
#!/bin/bash #!/bin/bash
set -e
source ./_common.sh source ./_common.sh
app=${!#} app=${!#}
@ -10,40 +12,33 @@ path=$(sudo yunohost app setting "$app" path)
name=$(sudo yunohost app setting "$app" name) name=$(sudo yunohost app setting "$app" name)
language=$(sudo yunohost app setting "$app" language) language=$(sudo yunohost app setting "$app" language)
if [[ "$name" = "" ]]; # Set default values
then name="${name:-YunoJappix}"
name="YunoJappix" language="${language:-en}"
fi
if [[ "$language" = "" ]];
then
language="en"
fi
# Remove trailing "/" for next commands # Remove trailing "/" for next commands
path=${path%/} path=${path%/}
# Retrieve sources # Retrieve sources
wget -nv -O jappix.tar.gz https://github.com/jappix/jappix/archive/${VERSION}.tar.gz wget -q -O jappix.tar.gz "$JAPPIX_SOURCE_URL"
# Copy files to the right place # Copy files to the right place
final_path="/var/www/${app}" final_path="/var/www/${app}"
sudo mkdir -p "$final_path" sudo mkdir -p "${final_path}/store/conf"
sudo tar -C "$final_path" -xf jappix.tar.gz --strip-components 1 sudo tar -C "$final_path" -xf jappix.tar.gz --strip-components 1
sudo cp ../conf/*.xml "${final_path}/store/conf/" sudo cp ../conf/*.xml "${final_path}/store/conf/"
# Set permissions to jappix directory # Set permissions to jappix directory
sudo chown -R www-data: "$final_path" sudo chown -R www-data: "$final_path"
# Modify Nginx configuration file and copy it to Nginx conf directory # Set and copy NGINX configuraion
sudo sed -i "s@PATHTOCHANGE2@${path}@g" ../conf/nginx.conf sudo sed -i "s@PATHTOCHANGE2@${path}@g" ../conf/nginx.conf
path=${path:-/}
if [ -z "$path" ]; then
path="/"
fi
sudo sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf sudo sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf
sudo sed -i "s@ALIASTOCHANGE@${final_path}/@g" ../conf/nginx.conf sudo sed -i "s@ALIASTOCHANGE@${final_path}/@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf" sudo cp ../conf/nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
# Set Jappix configuration
sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/main.xml" sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/main.xml"
sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/hosts.xml" sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/hosts.xml"
sudo sed -i "s@DOMAINTOCHANGE@${domain}@g" "${final_path}/store/conf/main.xml" sudo sed -i "s@DOMAINTOCHANGE@${domain}@g" "${final_path}/store/conf/main.xml"