mirror of
https://github.com/YunoHost-Apps/lufi_ynh.git
synced 2024-09-03 19:36:28 +02:00
commit
64a53051c3
5 changed files with 10 additions and 9 deletions
|
@ -1,11 +1,11 @@
|
||||||
# Génération des statistiques. Tous les jours, à 5h.
|
# Génération des statistiques. Tous les jours, à 5h.
|
||||||
0 5 * * * www-data cd "__FINALPATH__" && /usr/local/bin/carton exec script/lufi cron stats
|
0 5 * * * __USER__ cd "__FINALPATH__" && /usr/local/bin/carton exec script/lufi cron stats
|
||||||
|
|
||||||
# Suppression des adresses IP obsolètes. Tous les jours, à 6h.
|
# Suppression des adresses IP obsolètes. Tous les jours, à 6h.
|
||||||
0 6 * * * www-data cd "__FINALPATH__" && /usr/local/bin/carton exec script/lufi cron cleanbdd
|
0 6 * * * __USER__ cd "__FINALPATH__" && /usr/local/bin/carton exec script/lufi cron cleanbdd
|
||||||
|
|
||||||
# Suppression des images dont le délai a expiré. Tous les jours, à 6h.
|
# Suppression des images dont le délai a expiré. Tous les jours, à 6h.
|
||||||
0 6 * * * www-data cd "__FINALPATH__" && /usr/local/bin/carton exec script/lufi cron cleanfiles
|
0 6 * * * __USER__ cd "__FINALPATH__" && /usr/local/bin/carton exec script/lufi cron cleanfiles
|
||||||
|
|
||||||
# Vérification de l'occupation du dossier des images. Tous les jours, à 7h.
|
# Vérification de l'occupation du dossier des images. Tous les jours, à 7h.
|
||||||
0 7 * * * www-data cd "__FINALPATH__" && /usr/local/bin/carton exec script/lufi cron watch
|
0 7 * * * __USER__ cd "__FINALPATH__" && /usr/local/bin/carton exec script/lufi cron watch
|
||||||
|
|
|
@ -5,12 +5,11 @@ Requires=network.target
|
||||||
After=network.target
|
After=network.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=forking
|
||||||
User=__APP__
|
User=__APP__
|
||||||
Group=__APP__
|
Group=__APP__
|
||||||
RemainAfterExit=yes
|
|
||||||
WorkingDirectory=__FINALPATH__
|
WorkingDirectory=__FINALPATH__
|
||||||
PIDFile=__FINALPATH__script/hypnotoad.pid
|
PIDFile=__FINALPATH__/script/hypnotoad.pid
|
||||||
ExecStart=/usr/local/bin/carton exec hypnotoad script/lufi
|
ExecStart=/usr/local/bin/carton exec hypnotoad script/lufi
|
||||||
ExecStop=/usr/local/bin/carton exec hypnotoad -s script/lufi
|
ExecStop=/usr/local/bin/carton exec hypnotoad -s script/lufi
|
||||||
ExecReload=/usr/local/bin/carton exec hypnotoad script/lufi
|
ExecReload=/usr/local/bin/carton exec hypnotoad script/lufi
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
"en": "Self hosting files and sharing anonymous application",
|
"en": "Self hosting files and sharing anonymous application",
|
||||||
"fr": "Application d'hébergement et de partage de fichiers anonyme"
|
"fr": "Application d'hébergement et de partage de fichiers anonyme"
|
||||||
},
|
},
|
||||||
"version": "0.03.5~ynh1",
|
"version": "0.03.5~ynh2",
|
||||||
"url": "https://git.framasoft.org/luc/lufi",
|
"url": "https://git.framasoft.org/luc/lufi",
|
||||||
"license": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
"maintainer": {
|
"maintainer": {
|
||||||
|
|
|
@ -158,6 +158,7 @@ ynh_store_file_checksum "${final_path}/lufi.conf"
|
||||||
|
|
||||||
cp ../conf/cron_lufi /etc/cron.d/$app
|
cp ../conf/cron_lufi /etc/cron.d/$app
|
||||||
ynh_replace_string "__FINALPATH__" "$final_path/" "/etc/cron.d/$app"
|
ynh_replace_string "__FINALPATH__" "$final_path/" "/etc/cron.d/$app"
|
||||||
|
ynh_replace_string "__USER__" "$app" "/etc/cron.d/$app"
|
||||||
chmod +x $final_path/script/lufi
|
chmod +x $final_path/script/lufi
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -147,6 +147,7 @@ ynh_store_file_checksum "${final_path}/lufi.conf"
|
||||||
|
|
||||||
cp ../conf/cron_lufi /etc/cron.d/$app
|
cp ../conf/cron_lufi /etc/cron.d/$app
|
||||||
ynh_replace_string "__FINALPATH__" "$final_path/" "/etc/cron.d/$app"
|
ynh_replace_string "__FINALPATH__" "$final_path/" "/etc/cron.d/$app"
|
||||||
|
ynh_replace_string "__USER__" "$app" "/etc/cron.d/$app"
|
||||||
chmod +x $final_path/script/lufi
|
chmod +x $final_path/script/lufi
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Reference in a new issue