Update changelog, sysv script
authorNiki Roo <niki@nikiroo.be>
Sun, 25 Mar 2018 12:19:31 +0000 (14:19 +0200)
committerNiki Roo <niki@nikiroo.be>
Sun, 25 Mar 2018 12:19:31 +0000 (14:19 +0200)
changelog-fr.md
changelog.md
fanfix.sysv

index ffbe00778c1dd0f0e60bbdbfe80fc0598134493f..876f4b8acdacc382f6471d9af135218ea9b16a65 100644 (file)
@@ -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
 
index abe445ff0cbd5e5128e5f2161c2fc342384b6ef7..9cd826eaf2540212f0d58d5cd6aaa73c766d246f 100644 (file)
@@ -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
 
index 10be756a8e77f5b189cba115d99c9aaabc624308..3d3b23bb00573c2ffb12d00c61915dcfd645fcad 100755 (executable)
@@ -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