mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
fix
This commit is contained in:
parent
e0c58897ad
commit
9b63262bba
2 changed files with 22 additions and 29 deletions
|
@ -147,23 +147,6 @@ ynh_store_file_checksum --file="$final_path/config/db.inc.php"
|
||||||
# Install PHP dependencies using composer
|
# Install PHP dependencies using composer
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
# pushd "$final_path" || ynh_die
|
|
||||||
# export COMPOSER_HOME=$final_path
|
|
||||||
# curl -sS https://getcomposer.org/installer | php -- --install-dir="$final_path" \
|
|
||||||
# && php composer.phar config --global discard-changes true --quiet \
|
|
||||||
# && php composer.phar install --no-interaction --quiet
|
|
||||||
# #sudo -u www-data php composer.phar install
|
|
||||||
# #sudo -u www-data php composer.phar $app:migrate
|
|
||||||
# popd || ynh_die
|
|
||||||
|
|
||||||
# (
|
|
||||||
# cd "$final_path"
|
|
||||||
# export COMPOSER_HOME=$final_path
|
|
||||||
# curl -sS https://getcomposer.org/installer | php -- --install-dir="$final_path" \
|
|
||||||
# && php composer.phar config --global discard-changes true --quiet \
|
|
||||||
# && php composer.phar install --no-interaction --quiet
|
|
||||||
# )
|
|
||||||
|
|
||||||
(
|
(
|
||||||
cd "$final_path"
|
cd "$final_path"
|
||||||
export COMPOSER_HOME=$final_path
|
export COMPOSER_HOME=$final_path
|
||||||
|
@ -190,7 +173,7 @@ ynh_script_progression --message="Configuring database..." --weight=1
|
||||||
|
|
||||||
cache_dir="/home/$app"
|
cache_dir="/home/$app"
|
||||||
|
|
||||||
# Create datadir folder
|
# Create cachedir folder
|
||||||
mkdir -p $cache_dir
|
mkdir -p $cache_dir
|
||||||
chown -R $app $cache_dir
|
chown -R $app $cache_dir
|
||||||
# chown -R $app /home/movim/.composer/cache/repo/https---repo.packagist.org/
|
# chown -R $app /home/movim/.composer/cache/repo/https---repo.packagist.org/
|
||||||
|
@ -199,6 +182,7 @@ cd "$final_path"
|
||||||
|
|
||||||
ynh_exec_as $app php"${phpversion}" composer.phar $app:migrate
|
ynh_exec_as $app php"${phpversion}" composer.phar $app:migrate
|
||||||
php"${phpversion}" daemon.php config --username=$admin --password=$password
|
php"${phpversion}" daemon.php config --username=$admin --password=$password
|
||||||
|
|
||||||
# (
|
# (
|
||||||
# cd "$final_path"
|
# cd "$final_path"
|
||||||
# php"${phpversion}" mud.php db --set
|
# php"${phpversion}" mud.php db --set
|
||||||
|
@ -219,16 +203,15 @@ php"${phpversion}" daemon.php config --username=$admin --password=$password
|
||||||
# find "${final_path}/" -type d -print0 | xargs -0 chmod 0755
|
# find "${final_path}/" -type d -print0 | xargs -0 chmod 0755
|
||||||
# chmod 400 "${final_path}/config/db.inc.php"
|
# chmod 400 "${final_path}/config/db.inc.php"
|
||||||
|
|
||||||
chown www-data $final_path
|
chown -R $app:www-data $final_path
|
||||||
chown www-data $final_path/public
|
#chmod u+rwx $final_path
|
||||||
chmod u+rwx $final_path
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# INTEGRATE SERVICE IN YUNOHOST
|
# INTEGRATE SERVICE IN YUNOHOST
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
||||||
|
|
||||||
yunohost service add $app --description "Collaborative Markdown notes" --log="/var/log/$app/$app.log"
|
yunohost service add $app --description "Responsive web-based XMPP client" --log="/var/log/$app/$app.log"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# START SYSTEMD SERVICE
|
# START SYSTEMD SERVICE
|
||||||
|
@ -244,12 +227,22 @@ ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" #--
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Configuring SSOwat..." --weight=1
|
ynh_script_progression --message="Configuring SSOwat..." --weight=1
|
||||||
|
|
||||||
# Make app public if necessary or protect it
|
# # Make app public if necessary or protect it
|
||||||
if [ $is_public -eq 1 ]
|
# if [ $is_public -eq 1 ]
|
||||||
then
|
# then
|
||||||
# Everyone can access the app.
|
# # Everyone can access the app.
|
||||||
# The "main" permission is automatically created before the install script.
|
# # The "main" permission is automatically created before the install script.
|
||||||
ynh_permission_update --permission "main" --add "visitors"
|
# ynh_permission_update --permission "main" --add "visitors"
|
||||||
|
# fi
|
||||||
|
|
||||||
|
|
||||||
|
# SSOwat configuration
|
||||||
|
if [[ "$ssoenabled" = "No" ]]; then
|
||||||
|
ynh_app_setting_set "$app" skipped_uris "/"
|
||||||
|
(cd "$final_path" && php mud.php config --xmppwhitelist="$domain")
|
||||||
|
undo_sso_patch
|
||||||
|
else
|
||||||
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -112,7 +112,7 @@ systemctl enable $app.service
|
||||||
# INTEGRATE SERVICE IN YUNOHOST
|
# INTEGRATE SERVICE IN YUNOHOST
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
yunohost service add $app --description "A short description of the app" --log "/var/log/$app/$app.log"
|
yunohost service add $app --description "Responsive web-based XMPP client" --log "/var/log/$app/$app.log"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# START SYSTEMD SERVICE
|
# START SYSTEMD SERVICE
|
||||||
|
|
Loading…
Reference in a new issue