From: Niki Roo Date: Sun, 25 Mar 2018 12:19:31 +0000 (+0200) Subject: Update changelog, sysv script X-Git-Tag: fanfix-1.7.0~13 X-Git-Url: http://git.nikiroo.be/?p=fanfix.git;a=commitdiff_plain;h=57f21783818af79797a2c3db600a11f38e4074a1 Update changelog, sysv script --- diff --git a/changelog-fr.md b/changelog-fr.md index ffbe007..876f4b8 100644 --- a/changelog-fr.md +++ b/changelog-fr.md @@ -5,7 +5,10 @@ - update: mise à jour de nikiroo-utils - android: compatibilité Android - MangaFox: fix après une mise-à-jour du site +- MangaFox: l'ordre des tomes n'était pas toujours bon - new: utilisation de jsoup (uniquement pour MangaFox pour l'instant) +- fix: TYPE= not always correct in info-file +- fix: quotes error # Version 1.6.3 diff --git a/changelog.md b/changelog.md index abe445f..9cd826e 100644 --- a/changelog.md +++ b/changelog.md @@ -5,7 +5,10 @@ - update nikiroo-utils - android: Android compatibility - MangaFox: fix after website update +- MangaFox: tomes order was not always correct - new: use jsoup (only for MangaFox for now) +- fix: TYPE= était parfois mauvais dans l'info-file +- fix: les guillemets n'étaient pas toujours bien ordonnés # Version 1.6.3 diff --git a/fanfix.sysv b/fanfix.sysv index 10be756..3d3b23b 100755 --- a/fanfix.sysv +++ b/fanfix.sysv @@ -2,10 +2,10 @@ # # fanfix This starts the Fanfix remote service. # -# chkconfig: 2345 10 90 # description: Starts the Fanfix remote service # ### BEGIN INIT INFO +# Default-Start: 3 4 5 # Short-Description: Fanfix service # Description: Starts the Fanfix remote service ### END INIT INFO @@ -37,6 +37,8 @@ start) echo "Fanfix is already running." >&2 false else + [ -e "$OUT" ] && mv "$OUT" "$OUT".previous + [ -e "$ERR" ] && mv "$ERR" "$ERR".previous sudo -u "$USER" -- java -jar "$JAR" --server "$PINCODE" "$PORT" > "$OUT" 2> "$ERR" & echo $! > "$FPID" fi