mirror of
https://github.com/YunoHost-Apps/kresus_ynh.git
synced 2024-09-03 19:36:10 +02:00
Remove identation
This commit is contained in:
parent
77a163fbb8
commit
ceea8f3265
3 changed files with 46 additions and 46 deletions
|
@ -6,37 +6,37 @@ set -eu
|
|||
app=$YNH_APP_INSTANCE_NAME
|
||||
|
||||
# Retrieve arguments
|
||||
domain=$YNH_APP_ARG_DOMAIN
|
||||
path=$YNH_APP_ARG_PATH
|
||||
domain=$YNH_APP_ARG_DOMAIN
|
||||
path=$YNH_APP_ARG_PATH
|
||||
|
||||
# Source YunoHost helpers
|
||||
source /usr/share/yunohost/helpers
|
||||
source /usr/share/yunohost/helpers
|
||||
|
||||
# Check domain/path availability
|
||||
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|
||||
|| ynh_die "Path not available: ${domain}${path}"
|
||||
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|
||||
|| ynh_die "Path not available: ${domain}${path}"
|
||||
|
||||
# Install dependencies
|
||||
sudo apt-get update
|
||||
sudo apt-get install nodejs-legacy npm python-pip python-dev python-lxml python-imaging -y -qq
|
||||
sudo pip install weboob
|
||||
sudo apt-get update
|
||||
sudo apt-get install nodejs-legacy npm python-pip python-dev python-lxml python-imaging -y -qq
|
||||
sudo pip install weboob
|
||||
|
||||
# Build the app
|
||||
src_path=/home/yunohost.app/$app
|
||||
sudo git clone https://framagit.org/bnjbvr/kresus.git $src_path
|
||||
sudo sh -c "cd $src_path && make install"
|
||||
src_path=/home/yunohost.app/$app
|
||||
sudo git clone https://framagit.org/bnjbvr/kresus.git $src_path
|
||||
sudo sh -c "cd $src_path && make install"
|
||||
|
||||
# Modify Nginx configuration file and copy it to Nginx conf directory
|
||||
nginx_conf=../conf/nginx.conf
|
||||
sed -i "s@YNH_WWW_PATH@$path@g" $nginx_conf
|
||||
sudo cp $nginx_conf /etc/nginx/conf.d/$domain.d/$app.conf
|
||||
nginx_conf=../conf/nginx.conf
|
||||
sed -i "s@YNH_WWW_PATH@$path@g" $nginx_conf
|
||||
sudo cp $nginx_conf /etc/nginx/conf.d/$domain.d/$app.conf
|
||||
|
||||
# Setup service
|
||||
systemd_service=../conf/kresus.service
|
||||
sed -i "s@YNH_HOME@$src_path@g" $systemd_service
|
||||
sudo cp $systemd_service /etc/systemd/system/$app.service
|
||||
systemctl enable $app
|
||||
systemctl start $app
|
||||
systemd_service=../conf/kresus.service
|
||||
sed -i "s@YNH_HOME@$src_path@g" $systemd_service
|
||||
sudo cp $systemd_service /etc/systemd/system/$app.service
|
||||
systemctl enable $app
|
||||
systemctl start $app
|
||||
|
||||
# Reload services
|
||||
sudo service nginx reload
|
||||
sudo service nginx reload
|
||||
|
|
|
@ -3,17 +3,17 @@
|
|||
app=$YNH_APP_INSTANCE_NAME
|
||||
|
||||
# Source YunoHost helpers
|
||||
source /usr/share/yunohost/helpers
|
||||
source /usr/share/yunohost/helpers
|
||||
|
||||
# Retrieve app settings
|
||||
domain=$(ynh_app_setting_get "$app" domain)
|
||||
domain=$(ynh_app_setting_get "$app" domain)
|
||||
|
||||
# Remove sources
|
||||
systemctl stop $app
|
||||
systemctl disable $app
|
||||
sudo rm -rf /home/yunohost.app/$app
|
||||
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
||||
sudo rm -f /etc/systemd/system/$app.service
|
||||
systemctl stop $app
|
||||
systemctl disable $app
|
||||
sudo rm -rf /home/yunohost.app/$app
|
||||
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
||||
sudo rm -f /etc/systemd/system/$app.service
|
||||
|
||||
# Reload nginx service
|
||||
sudo service nginx reload
|
||||
sudo service nginx reload
|
||||
|
|
|
@ -6,30 +6,30 @@ set -eu
|
|||
app=$YNH_APP_INSTANCE_NAME
|
||||
|
||||
# Source YunoHost helpers
|
||||
source /usr/share/yunohost/helpers
|
||||
source /usr/share/yunohost/helpers
|
||||
|
||||
# Retrieve app settings
|
||||
domain=$(ynh_app_setting_get "$app" domain)
|
||||
path=$(ynh_app_setting_get "$app" path)
|
||||
domain=$(ynh_app_setting_get "$app" domain)
|
||||
path=$(ynh_app_setting_get "$app" path)
|
||||
|
||||
# Build the app
|
||||
src_path=/home/yunohost.app/$app
|
||||
sudo mkdir -p $src_path $src_path/node_modules
|
||||
sudo git clone https://framagit.org/bnjbvr/kresus.git $src_path
|
||||
sudo npm install --prefix $src_path $src_path
|
||||
sudo .$src_path/scripts/build.sh
|
||||
src_path=/home/yunohost.app/$app
|
||||
sudo mkdir -p $src_path $src_path/node_modules
|
||||
sudo git clone https://framagit.org/bnjbvr/kresus.git $src_path
|
||||
sudo npm install --prefix $src_path $src_path
|
||||
sudo .$src_path/scripts/build.sh
|
||||
|
||||
# Modify Nginx configuration file and copy it to Nginx conf directory
|
||||
nginx_conf=../conf/nginx.conf
|
||||
sed -i "s@YNH_WWW_PATH@$path@g" $nginx_conf
|
||||
sudo cp $nginx_conf /etc/nginx/conf.d/$domain.d/$app.conf
|
||||
nginx_conf=../conf/nginx.conf
|
||||
sed -i "s@YNH_WWW_PATH@$path@g" $nginx_conf
|
||||
sudo cp $nginx_conf /etc/nginx/conf.d/$domain.d/$app.conf
|
||||
|
||||
# Setup service
|
||||
systemd_service=../conf/kresus.service
|
||||
sed -i "s@APP_TO_CHANGE@$app@g" $systemd_service
|
||||
sudo cp $systemd_service /etc/systemd/system/$app.service
|
||||
systemctl enable $app
|
||||
systemctl start $app
|
||||
|
||||
systemd_service=../conf/kresus.service
|
||||
sed -i "s@APP_TO_CHANGE@$app@g" $systemd_service
|
||||
sudo cp $systemd_service /etc/systemd/system/$app.service
|
||||
systemctl enable $app
|
||||
systemctl start $app
|
||||
|
||||
# Reload nginx service
|
||||
sudo service nginx reload
|
||||
sudo service nginx reload
|
||||
|
|
Loading…
Reference in a new issue