Compare commits

...

2 Commits

Author SHA1 Message Date
Aliberk Sandıkçı 9f600f4e35
version update 2024-01-07 15:49:01 +03:00
Aliberk Sandıkçı 977776ac81
update 2024-01-07 15:46:44 +03:00
6 changed files with 20 additions and 13 deletions

View File

@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
This is a dummy description of this app features
**Shipped version:** 1.0~ynh1
**Shipped version:** 1.5~ynh1
## Screenshots

View File

@ -19,7 +19,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
Ceci est une fausse description des fonctionalités de l'app
**Version incluse :** 1.0~ynh1
**Version incluse :** 1.5~ynh1
## Captures décran

View File

@ -1,2 +1,3 @@
<?php
$DATAACCESS_TOKEN = '__ACCESS_TOKEN__';
$APP_NAME = '__NAME__';

View File

@ -7,7 +7,7 @@ name = "Yurdle"
description.en = "yurdle package"
description.tr = "yurdle paketi"
version = "1.4~ynh1"
version = "1.5~ynh1"
maintainers = ["asandikci"]
@ -83,8 +83,8 @@ ram.runtime = "50M"
# This will pre-fetch the asset which can then be deployed during the install/upgrade scripts with :
# ynh_setup_source --dest_dir="$install_dir"
# You can also define other assets than "main" and add --source_id="foobar" in the previous command
url = "https://git.aliberksandikci.com.tr/ifl/Yurdle/releases/download/v1.4/yurdle_server.tar.gz"
sha256 = "7bf5398a577b7a61f1e8b4a8d6f6c98a01889a683f696cf7257e9f09e0b60bbc"
url = "https://git.aliberksandikci.com.tr/ifl/Yurdle/releases/download/v1.5/yurdle_server.tar.gz"
sha256 = "168963a9183b325925ae805eb9cfd0b907721a1e3a06ffa54c64e7e4f427f48e"
# These infos are used by https://github.com/YunoHost/apps/blob/master/tools/autoupdate_app_sources/autoupdate_app_sources.py
# to auto-update the previous asset urls and sha256sum + manifest version

View File

@ -26,7 +26,7 @@ source /usr/share/yunohost/helpers
# ...
#
# $app is the app id (i.e. 'example' for first install,
# $app is the app id (i.e. 'example' for first install,
# or 'example__2', '__3', ... for multi-instance installs)
#
@ -44,7 +44,7 @@ ynh_script_progression --message="Setting up source files..." --weight=1
# Download, check integrity, uncompress and patch the source from manifest.toml
ynh_setup_source --dest_dir="$install_dir"
# $install_dir will automatically be initialized with some decent
# $install_dir will automatically be initialized with some decent
# permission by default ... however, you may need to recursively reapply
# ownership to all files such as after the ynh_setup_source step
chown -R $app:www-data "$install_dir"
@ -155,10 +155,16 @@ chown $app:$app "$install_dir/config.php"
chmod -R 700 "$install_dir/src/"
chown -R $app:$app "$install_dir/src/"
php -r "require '/var/www/$app/src/server.php'; updateRemoteData(); ";
php -r "require '/var/www/$app/src/server.php'; updateRemoteData(); "
chown $app:$app "$install_dir/data.toml"
chmod 700 "$install_dir/data.toml"
crontab -l | { cat; echo "*/10 * * * * php -r \"require '/var/www/$app/src/server.php'; updateRemoteData(); \""; } | crontab -
echo "*/10 * * * * php -r \"require '/var/www/$app/src/server.php'; updateRemoteData(); \"" >>"/etc/cron.d/$app"
php -r "require '/var/www/$app/src/server.php'; chooseTodayPerson(); "
chown $app:$app "$install_dir/src/todays.php"
chmod 700 "$install_dir/src/todays.php"
echo "0 0 * * * php -r \"require '/var/www/$app/src/server.php'; chooseTodayPerson(); \"" >>"/etc/cron.d/$app"
### For more complex cases where you want to replace stuff using regexes,
### you shoud rely on ynh_replace_string (which is basically a wrapper for sed)
@ -185,7 +191,7 @@ ynh_local_curl "/INSTALL_PATH" "key1=value1" "key2=value2" "key3=value3"
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
# ynh_script_progression --message="Starting a systemd service..." --weight=1
### `ynh_systemd_action` is used to start a systemd service for an app.
### Only needed if you have configure a systemd service
@ -196,7 +202,7 @@ ynh_script_progression --message="Starting a systemd service..." --weight=1
### - And the section "STOP SYSTEMD SERVICE" and "START SYSTEMD SERVICE" in the change_url script
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
# ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# END OF SCRIPT

View File

@ -133,9 +133,9 @@ chown -R $app:$app "$install_dir/src/"
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
# ynh_script_progression --message="Starting a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
# ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# END OF SCRIPT