darkstat_export (darkstat-3.0.719) | : | darkstat_export (darkstat-3.0.721) | ||
---|---|---|---|---|
skipping to change at line 44 | skipping to change at line 44 | |||
if test -r ${DBFILENAME}; then | if test -r ${DBFILENAME}; then | |||
echo ${SCRIPTNAME}: Found file ${DBFILENAME} | echo ${SCRIPTNAME}: Found file ${DBFILENAME} | |||
else | else | |||
echo ${SCRIPTNAME}: file ${DBFILENAME} does not exist | echo ${SCRIPTNAME}: file ${DBFILENAME} does not exist | |||
exit 1 | exit 1 | |||
fi | fi | |||
CSVFILENAME=${DBFILENAME%%.*}.csv | CSVFILENAME=${DBFILENAME%%.*}.csv | |||
echo ${SCRIPTNAME}: Writing output into ${CSVFILENAME} | echo ${SCRIPTNAME}: Writing output into ${CSVFILENAME} | |||
# The spec of the .db export format exists for different versions: | # The spec of the .db export format exists for different versions: | |||
# http://unix4lyfe.org/gitweb/darkstat/blob/0a152e51f5d9c1771308caa7135d363a72 2aee18:/export-format.txt | # https://github.com/emikulic/darkstat/blob/master/export-format.txt | |||
# http://git.msquadrat.de/darkstat.git/blob_plain/master:/export-format.txt | # http://git.msquadrat.de/darkstat.git/blob_plain/master:/export-format.txt | |||
# http://phil.lavin.me.uk/downloads/parse.phps | # http://phil.lavin.me.uk/downloads/parse.phps | |||
# Only file format version 1 is supported by us. | # Only file format version 1 is supported by us. | |||
# Obviously, darkstat itself distinguishes 3 different host format versions. | # Obviously, darkstat itself distinguishes 3 different host format versions. | |||
# Only host format version 2 is supported by us. | # Only host format version 2 is supported by us. | |||
# The darkstat database file is converted from binary format | # The darkstat database file is converted from binary format | |||
# to ASCII by the standard Unix command od. | # to ASCII by the standard Unix command od. | |||
# Some things don't work correctly yet. | # Some things don't work correctly yet. | |||
# Probably because there is no DNS server configured in our embedded device | # Probably because there is no DNS server configured in our embedded device | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |