1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yourls_ynh.git synced 2024-09-03 20:35:59 +02:00

Fixed wrong path for sso script

This commit is contained in:
anmol 2019-01-04 23:36:26 +05:30
parent 1dab47a36f
commit 46dfbcc0bb
4 changed files with 10 additions and 10 deletions

View file

@ -123,12 +123,12 @@ ynh_replace_string "yourpassword" "$pass" "$final_path/user/config.php"
ynh_replace_string "modify this text with something random" "$(ynh_string_random 24)$(ynh_string_random 24)" "$final_path/user/config.php" ynh_replace_string "modify this text with something random" "$(ynh_string_random 24)$(ynh_string_random 24)" "$final_path/user/config.php"
# The script "add_sso_conf.py" will just add en entry for the path "/admin" in the sso conf.json.persistent file in the cathegory "protected_urls". # The script "add_sso_conf.py" will just add en entry for the path "/admin" in the sso conf.json.persistent file in the cathegory "protected_urls".
cp ../conf/add_sso_conf.py $final_path cp ../conf/add_sso_conf.py $final_path/add_sso_conf.py
cp ../conf/remove_sso_conf.py $final_path cp ../conf/remove_sso_conf.py $final_path/remove_sso_conf.py
ynh_replace_string "__DOMAIN__" "$domain" "$final_path/user/add_sso_conf.py" ynh_replace_string "__DOMAIN__" "$domain" "$final_path/add_sso_conf.py"
ynh_replace_string "__PATH__" "$path_url" "$final_path/user/add_sso_conf.py" ynh_replace_string "__PATH__" "$path_url" "$final_path/add_sso_conf.py"
ynh_replace_string "__DOMAIN__" "$domain" "$final_path/user/remove_sso_conf.py" ynh_replace_string "__DOMAIN__" "$domain" "$final_path/remove_sso_conf.py"
ynh_replace_string "__PATH__" "$path_url" "$final_path/user/remove_sso_conf.py" ynh_replace_string "__PATH__" "$path_url" "$final_path/remove_sso_conf.py"
python3 $final_path/add_sso_conf.py || ynh_die "Your file /etc/ssowat/conf.json.persistent don't respect the json synaxe. Please fix the synaxe to install this app. For more information see here : https://github.com/YunoHost-Apps/synapse_ynh/issues/32" python3 $final_path/add_sso_conf.py || ynh_die "Your file /etc/ssowat/conf.json.persistent don't respect the json synaxe. Please fix the synaxe to install this app. For more information see here : https://github.com/YunoHost-Apps/synapse_ynh/issues/32"

View file

@ -83,10 +83,10 @@ sudo cp -a "$tmpdir/user/config.php" "$final_path/user"
# The script "add_sso_conf.py" will just add en entry for the path "/admin" in the sso conf.json.persistent file in the cathegory "protected_urls". # The script "add_sso_conf.py" will just add en entry for the path "/admin" in the sso conf.json.persistent file in the cathegory "protected_urls".
cp ../conf/add_sso_conf.py $final_path cp ../conf/add_sso_conf.py $final_path
cp ../conf/remove_sso_conf.py $final_path cp ../conf/remove_sso_conf.py $final_path
ynh_replace_string "__DOMAIN__" "$domain" "$final_path/user/add_sso_conf.py" ynh_replace_string "__DOMAIN__" "$domain" "$final_path/add_sso_conf.py"
ynh_replace_string "__PATH__" "$path_url" "$final_path/user/add_sso_conf.py" ynh_replace_string "__PATH__" "$path_url" "$final_path/add_sso_conf.py"
ynh_replace_string "__DOMAIN__" "$domain" "$final_path/user/remove_sso_conf.py" ynh_replace_string "__DOMAIN__" "$domain" "$final_path/remove_sso_conf.py"
ynh_replace_string "__PATH__" "$path_url" "$final_path/user/remove_sso_conf.py" ynh_replace_string "__PATH__" "$path_url" "$final_path/remove_sso_conf.py"
#remove tmp dir #remove tmp dir
sudo rm -Rf "$tmpdir" sudo rm -Rf "$tmpdir"