1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
|
sysklogd (1.3-31) frozen unstable; urgency=low, closes=28629 30093 31494 30462
* ``-m 0'' turns off -- MARK -- now. (closes: Bug#28629, Bug#31494)
* Changed Greg's e-mail address to represent his current one.
* Shortened line length for kernel logging slightly.
* Corrected return value of AddModule (closes: Bug#30093)
* Finally fixed an error with `-a' processing, thanks to Topi Miettinen
<tom@medialab.sonera.net> (closes: Bug#30462)
-- Martin Schulze <joey@finlandia.infodrom.north.de> Tue, 19 Jan 1999 23:56:07 +0100
sysklogd (1.3-30) unstable; urgency=low, closes=28128 28122 24893
* Contains more patches from Topi Miettinen.
* Fixed two mistakes from the most recent version
* Fixed fd leak problem. Thanks to Topi for detecting it
* Ouch! Looks like the released package again is broken. It worked
locally.
-- Martin Schulze <joey@finlandia.infodrom.north.de> Sun, 18 Oct 1998 20:38:22 +0200
sysklogd (1.3-29) unstable; urgency=low, closes=24893
* Re-Applied patch provided vom Topi Miettinen with regard to the people
from OpenBSD. This provides the additional '-a' argument used for
specifying additional UNIX domain sockets to listen to. This is been
used with chroot()'ed named's for example. An example is described at
http://www.psionic.com/papers/dns.html. This time the patch doesn't
stall syslogd. Thanks to Topi Miettinen <tom@medialab.sonera.net>
(closes: Bug#24893)
-- Martin Schulze <joey@finlandia.infodrom.north.de> Sat, 17 Oct 1998 20:23:00 +0200
sysklogd (1.3-28) unstable; urgency=low
* Added manpage for syslog-facility, also written by Raphal Hertzog
* Reverted support for multiple Unix domain sockets since it caused
syslogd to not accept more sockets after a certain (undefinitve)
time. (opens: Bug#24893)
* The complete code is still present, search for `Bug#24893'
* Commented out `-a' in the syslogd.8 manpage
-- Martin Schulze <joey@finlandia.infodrom.north.de> Thu, 15 Oct 1998 19:35:26 +0200
sysklogd (1.3-27) frozen unstable; urgency=low, closes=21212 11917 21606 24609 25835 26015 24648 20135 23502 24893 24894
* Postinst will create files with correct file modes (closes: Bug#21212)
* Made /dev/xconsole mode 0640 and root.adm (closes: Bug#11917)
* Changed priority of exit message from LOG_ERR to LOG_INFO (closes
Bug#21606)
* The code now is compilable without SYSLOG_INET again. Thanks to
Enrik Berkhan <enrik@rzstud1.akk.org>.
* Added support for TESTING define which will turn syslogd into
stdio-mode used for debugging.
* Reworked the initialization/fork code. Now the parent
process activates a signal handler which the daughter process will
raise if it is initialized. Only after that one the parent process
may exit. Otherwise klogd might try to flush its log cache while
syslogd can't receive the messages yet. (closes: Bug#24609)
* Fixed typo in /etc/syslog.conf (closes: Bug#25835)
* Modified pre- and postinst scripts to set +e before executing external
scripts. This is a workaround against a bug in bash (Bug#23857).
Bash exports the errexit (-e) flag if allexport (-a) has been set. The
bug occurs even if allexport is being _re_set. (closes: Bug#26015)
* Modified ksym::CheckVersion()
. Use shift to decode the kernel version
. Compare integers of kernel version
. extract major.minor.patch from utsname.release via sscanf()
The reason lays in possible use of kernel flavours which modify
utsname.release but no the Version_ symbol. (closes: Bug#20135)
* Corrected klogd.c in order to support the new address space for late
2.1 kernels. Some support for unsigned long in contrary to int was
missing. (closes: Bug#23502)
* Applied patch provided vom Topi Miettinen with regard to the people
from OpenBSD. This provides the additional '-a' argument used for
specifying additional UNIX domain sockets to listen to. This is been
used with chroot()'ed named's for example. An example is described at
http://www.psionic.com/papers/dns.html. Thanks to Topi Miettinen
<tom@medialab.sonera.net> (closes: Bug#24893)
* Added support for `ftp' log facility which was introduced by glibc
version 2. Thanks to netgod and Flood from #Debian.
* Code cleanups with regard to bsd -> posix transition and stronger
security (buffer length checking). Thanks to Topi Miettinen
<tom@medialab.sonera.net> (closes: Bug#24894)
. index() --> strchr()
. sprintf() --> snprintf()
. bcopy() --> memcpy()
. bzero() --> memset()
. UNAMESZ --> UT_NAMESIZE
. sys_errlist --> strerror()
* Added support for setutent()/getutent()/endutend() instead of binary
reading the UTMP file. This is the the most portable way. Thanks to
Topi Miettinen <tom@medialab.sonera.net>.
* Avoid logging of SIGCHLD when syslogd is in the process of exiting and
closing its files. Again thanks to Topi.
* Added /usr/sbin/syslog-facility, written by Raphal Hertzog
<hertzog@debian.org>. It opens a way for other packages to add and
remove logfiles/facilities.
* Modified printline() to support 8bit characters - such as russion
letters. Thanks to Vladas Lapinskas <lapinskas@mail.iae.lt>.
-- Martin Schulze <joey@finlandia.infodrom.north.de> Mon, 12 Oct 1998 22:24:04 +0200
sysklogd (1.3-26) frozen unstable; urgency=low, closes=20903 20765 20556 20507 20647 20220
* Fixed typos in syslogd-listfiles(1), thanks to Francesco Potorti`
<F.Potorti@cnuce.cnr.it> (closes: Bug#20903)
* Corrected email address for Shane Alderton (closes: Bug#20765)
* Fixed manpage to not reflect reverse implementated SIGALRM signal
handler (closes: Bug#20647)
* Modified behaviour with including <sys/module.h> (closes: Bug#20556)
* Added correct prototype for llseek() (closes: Bug#20507, Bug#20220)
* Added more log information if problems occurr while reading a system
map file.
* Modified System.map read function to try all possible map files until
a file with matching version is found.
* Added Debian release to klogd
* Switched to fgets() as gets() is not buffer overrun secure.
* Modified loop for detecting the correct system map.
-- Martin Schulze <joey@finlandia.infodrom.north.de> Thu, 16 Apr 1998 19:28:05 +0200
sysklogd (1.3-25) unstable; urgency=low, closes=19454 19145 1914
* Corrected permissions on packaging control files (closes: Bug#19414)
* Removed kill statements from rc file (closes: Bug#19454, Bug#19145)
* Applied patch from Pedro Manuel Rodrigues <pmanuel@cindy.fe.up.pt> to
let klogd work togther with >2GB address space.
-- Martin Schulze <joey@finlandia.infodrom.north.de> Thu, 19 Mar 1998 23:56:09 +0100
sysklogd (1.3-24) unstable; urgency=low, closes=18124
* Fixed tiny mistake which refused the MARK facility to work properly
(closes: Bug#18124)
* Corrected Topi's patch as it prevented forwarding during startup due
to an unknown LogPort.
-- Martin Schulze <joey@finlandia.infodrom.north.de> Wed, 25 Feb 1998 13:19:27 +0100
sysklogd (1.3-23) unstable; urgency=low
* Corrected FSF's address (lintian)
* Implemented force-reload (lintian)
* Standards-Version: 2.4.0.0
* Applied patch from Topi Miettinen <Topi.Miettinen@ml.tele.fi> to open
the UDP socket only if it is really needed.
* Updated sysklogd(8) manpage
* Added notes to mailing list
-- Martin Schulze <joey@finlandia.infodrom.north.de> Tue, 24 Feb 1998 00:39:10 +0100
sysklogd (1.3-22) unstable; urgency=low, closes=17192 17385 17601
* Included a real fix to the %'s problem (fixes: Bug#17192)
* Another patch for Linux/alpha by Christopher C Chimelis
<chris@classnet.med.miami.edu> (fixes: Bug#17385)
* Removed killall-statement from postinst. Thanks to James Troup for
reporting it.
* Added chdir("/") to both daemons (fixes: Bug#17601)
-- Martin Schulze <joey@finlandia.infodrom.north.de> Thu, 29 Jan 1998 21:56:40 +0100
sysklogd (1.3-21) unstable; urgency=low, closes=17159
* Fixed small typo in syslogd-listfiles (Bug#17159)
-- Martin Schulze <joey@finlandia.infodrom.north.de> Thu, 15 Jan 1998 23:22:57 +0100
sysklogd (1.3-20) unstable; urgency=low, closes=17000
* Corrected some code that caused klogd to dump core when receiving some
special messages from 2.1.78. Thanks to Chu-yeon Park
<kokids@doit.ajou.ac.kr> for informing me.
* Fixed bug that caused klogd to die if there is no System.map
available.
* Added -x switch to omit EIP translation and System.map evaluation.
Thanks to Florian La Roche <florian@knorke.saar.de>
* Fixed small bugs in F_FORW_UNKN meachanism. Thanks to Torsten Neumann
<torsten@londo.rhein-main.de> for pointing me to it.
* Fixed problem with klogd not being able to be built on a kernel newer
than 2.1.18. Worked in a patch from Alessandro Suardi <asuardi@uninetcom.it>
* Fixed small typo in syslogd-listfiles
* Corrected debug output concerning remote receiption
* Removed race condition in syslogd-listfiles
* Modified logfile detection routine to take care of double listed
logfiles. Thanks to Roman Hodek <roman@debian.org> for providing an
appropriate patch. (Bug#17000)
-- Martin Schulze <joey@finlandia.infodrom.north.de> Tue, 13 Jan 1998 01:59:56 +0100
sysklogd (1.3-19) unstable; urgency=low, closes=16643 16769 16796 16828 16148 14776
* Used better regexp for detecting sensitive data. Thanks a lot to
Susanne Schmidt <banshee@linux.de> for providing it.
* Fixed ownership of /usr/doc/sysklogd/copyright and readme (Bug#16643)
* Corrected Standards-Version to 2.3.0.1 (Bug#16769)
* Reworked one line of an older patch because it prevented syslogd from
binding the socket with the result that no messages were forwarded to
other hosts.
* Changed the behaviour of klogd when receiving a terminate signal. Now
the program terminates immediately instead of completing the receipt of
a kernel message. (Bug#16796, Bug#16828, Bug#16148)
* Noticed a bug which was closed by 1.3-18 (Bug#14776)
* Changed Maintainer address to joey@debian.org
-- Martin Schulze <joey@finlandia.infodrom.north.de> Fri, 9 Jan 1998 00:58:36 +0100
sysklogd (1.3-18) unstable; urgency=low, closes=11731 12009 13506 14329 14521 14610 15840 15336
* Added test in postinst if user and group exist. Christoph Lameter run
into trouble upgrading a RedHat system.
* Fixed little mistake which prevented klogd from accepting a console
log level of 8 to get <7> alias KERN_DEBUG displayed.
* Linked against libc6 (Bug#11731)
* Added SHELL=/bin/bash to rules as Herbert Xu suggested
* Corrected syslog.conf(5) manpage
* syslogd resets the ignore priority flag now. Thanks to Herbert
Thielen. (Bug#12009)
* Fixed bug that caused syslogd to write into wrong files under some
race conditions. Thanks to Herbet Xu. (Bug#13506)
* /var/log/auth.log will only be touch if needed (Bug#14329)
* debian/conffiles is treated like a document (Bug#14521)
* Added script for generic logfile detection and rotation and included
that in cron scripts, included also its manpage (Bug#14610)
* Modified restart messages in /etc/init.d/sysklogd (Bug#15840)
* klogd will first try to load /boot/System.map-$ver, then
/boot/System.map, then /System.map-$ver and after that /System.map
* Modified ExpandKadds() because there were some problems accessing
memory r/w. (Bug#15336)
-- Martin Schulze <joey@finlandia.infodrom.north.de> Fri, 2 Jan 1998 03:31:09 +0100
sysklogd (1.3-17) unstable; urgency=low
* Fixed stupid bug which caused klogd to eat up 90% cpu time.
-- Martin Schulze <joey@finlandia.infodrom.north.de> Wed, 25 Jun 1997 15:22:29 +0200
sysklogd (1.3-16) unstable; urgency=low
* Included Miquel's patches which allows continuation line support
for syslogd. Corrected syslog.conf(5) manpage. Improved
syslog.conf file. Thanks to Miquel van Smoorenburg
<miquels@cistron.nl> for dropping in these patches.
* Added /var/log/syslog as a daily rotated logfile which contains
everything except auth.*
* ksym.c: Added #1 and #2 to some error messages in order to being able
to divide them (ulmo@Q.Net)
* Improved postinst script (Thanks to Miquel van Smorrenborg for ideas)
* klogd now also reads /System.map-<version> and
/boot/System.map-<version> (Bug#7210)
* syslogd,klogd: made DEBRELEASE optional to support a non-Debian
release as well.
* Corrected freeing of logfiles.
* Removed delay of 10 seconds. (Bug#8104, Bug#8400)
* Modified permissions of logfiles from 644 to 640 and 640 to 600 for
security aspects.
* Corrected syslog.conf(5) manpage (Bug#9779)
* Found upstream patches for 1.3.1 to 1.3.3 which are now included.
These also include some patches for glibc and Alpha.
* Included patch to modules package to support better debugging
* Added patch from Leland Olds which fixes a buffer overrun and improved
symbol lookup. (Bug#4875)
* Some more glibc patches made by Michael Alan Dorman
<mdorman@debian.org>. (Bug#8362, Bug#8763)
-- Martin Schulze <joey@finlandia.infodrom.north.de> Sun, 15 Jun 1997 19:37:13 +0200
sysklogd (1.3-15) unstable; urgency=low
* Added /var/log/mail.log as a logfile
* Corrected Description field (Bug#7624)
* Added read statement in postinst script (Bug#8243)
-- Martin Schulze <joey@infodrom.north.de> Wed, 26 Mar 1997 13:32:24 +0100
sysklogd (1.3-14) unstable; urgency=low
* Debugging syslogd now shows facility.priority
* Minor fixes
* Modified syslogd.c to not kill itself which confuses bash 2.0
-- Martin Schulze <joey@infodrom.north.de> Sun, 23 Feb 1997 12:23:55 +0100
sysklogd (1.3-13) stable; urgency=low
* Made /etc/init.d/sysklogd more verbose
* Minor fixes
* Uncompressed copyright, but compressed /usr/doc/sysklogd-1.3.16/readme
-- Martin Schulze <joey@debian.org> Sat, 8 Feb 1997 14:12:29 +0100
sysklogd (1.3-12) stable; urgency=HIGH
* Converted to Standards-Version 2.1.1.2
* init.d/sysklogd: added "sleep 1"
* syslogd won't hassle anymore if it can't access logfils. Patched by
me. This adresses Bug#5865.
* /etc/init.d/sysklogd: Modified so that one can use commandline
arguments for both syslogd and klogd.
* debian.rules: Installed ChangeLog
-- Martin Schulze <joey@finlandia.infodrom.north.de> Thu, 30 Jan 1997 22:48:59 +0100
Mon Now 25 10:36:01 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* modified preinst to work if /etc/init.d/sysklogd doesn't exist
because of a failure
Mon Sep 10 10:36:01 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* ksyms.c: klogd will first look at /System.map (Bug#4403, #4459)
Fri Aug 16 21:36:01 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* debian.rules: Changed permissions for syslogd and klogd to 755
(Bug#4049)
Mon Aug 12 10:40:05 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* Corrected permissions of documentation. Thanks to Dan
Quinlan. (Bug#4090)
Mon Aug 5 22:47:40 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* syslogd.c: If you haven't set your domainname, syslogd will dump
core upon startup. Fixed. Thanks to Leeland Lucius
<llucius@millcomm.com> for reporting and patching it. (Bug#3526)
* /etc/init.d/sysklogd, /etc/cron.weekly/sysklogd: slight
improvements. Thanks to Bernd Eckenfels <ecki@tapac.inka.de>.
Fri Aug 2 11:03:30 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* modified weekly cron script, thanks to Todd Tyrone Fries <todd@miango.com>
Fri Jun 14 10:42:26 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* ksyms.c: increased the size of vstring, because since Linux
major versions are decoded with n * 65536 and we now have 2.0, the
field was too short.
Tue May 28 01:02:01 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* syslogd.c: Corrected behaviour of blocking pipes - i.e. the
whole system hung. Michael Nonweiler <mrn20@hermes.cam.ac.uk> has
sent us a patch to correct this. A new logfile type F_PIPE has
been introduced.
Thu May 23 08:39:54 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* postinst: Corrected killall-statement, Thanks to Miquel van
Smoorenborg for the hint
Mon May 20 00:14:35 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* postinst: added a killall to remove an existing syslogd. It
could exist because of Bug#2836.
Sun May 12 13:36:55 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* removed auth.* from /dev/xconsole
* klogd won't log old messages anymore (Bug#2337)
I have applied the patch from Chris Hanson.
* I have put another start-stop-daemon call in the startup script
so the configs are reloaded on startup. This should
help. (Bug#2552)
* Sysklogd takes care of this and createst /dev/xconsole if it
doesn't exist during installation. (Bug#2683)
* I have corrected permissions of /dev/xconsole. (Bug#2837)
* defined /etc/cron.weekly/sysklogd as a conffile (Bug#2950, Bug#2960)
* introduced two binary packages: syslogd and sysklogd which
exclude each other
Sun Apr 21 17:56:03 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* Corrected preinst (Bug#2722, Bug#2725, Bug#2726)
* Linked against libc 5.2.18 (Bug#2723, Bug#2725)
* Corrected control file to fit with newer dpkgs
Wed Apr 17 21:40:56 1996 Martin Schulze <joey@finlandia.infodrom.north.de>
* Added Debian packaging information
|