rsyslog-vl.spec 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. %bcond_with systemd
  2. %global _exec_prefix %{nil}
  3. %global _libdir %{_exec_prefix}/%{_lib}
  4. %define rsyslog_statedir %{_sharedstatedir}/rsyslog
  5. %define rsyslog_pkidir %{_sysconfdir}/pki/rsyslog
  6. Summary: Enhanced system logging and kernel message trapping daemon
  7. Name: rsyslog
  8. Version: 8.2406.0
  9. Release: 1%{?_dist_release}%{?with_systemd:.systemd}
  10. Group: system
  11. Vendor: Project Vine
  12. Distribution: Vine Linux
  13. License: GPLv3+
  14. URL: https://www.rsyslog.com/
  15. Source0: https://www.rsyslog.com/files/download/rsyslog/%{name}-%{version}.tar.gz
  16. Source1: rsyslog.init
  17. Source2: rsyslog.conf
  18. Source3: rsyslog.sysconfig
  19. Source4: rsyslog.log
  20. Source5: rsyslog.service
  21. Source6: rsyslog.log.systemd
  22. BuildRequires: libestr-devel
  23. BuildRequires: libfastjson-devel
  24. BuildRequires: libuuid-devel
  25. BuildRequires: python3-rpm-macros
  26. BuildRequires: python3-docutils
  27. BuildRequires: pkgconfig(zlib)
  28. Requires: logrotate >= 3.5.2
  29. Requires: bash >= 2.0
  30. %if %{with systemd}
  31. BuildRequires: systemd-devel >= 204-8
  32. %{?systemd_requires}
  33. %else
  34. Requires(post): /sbin/chkconfig coreutils
  35. Requires(preun): /sbin/chkconfig /sbin/service
  36. Requires(postun): /sbin/service
  37. %endif
  38. Provides: syslog
  39. Conflicts: sysklogd, syslog-ng
  40. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  41. %description
  42. Rsyslog is an enhanced, multi-threaded syslog daemon. It supports MySQL,
  43. syslog/TCP, RFC 3195, permitted sender lists, filtering on any message part,
  44. and fine grain output format control. It is compatible with stock sysklogd
  45. and can be used as a drop-in replacement. Rsyslog is simple to set up, with
  46. advanced features suitable for enterprise-class, encryption-protected syslog
  47. relay chains.
  48. %package mysql
  49. Summary: MySQL support for rsyslog
  50. Group: system
  51. Requires: %name = %version-%release
  52. BuildRequires: libmariadb-devel
  53. %description mysql
  54. The rsyslog-mysql package contains a dynamic shared object that will add
  55. MySQL database support to rsyslog.
  56. %package pgsql
  57. Summary: PostgresSQL support for rsyslog
  58. Group: system
  59. Requires: %name = %version-%release
  60. BuildRequires: libpq-devel
  61. %description pgsql
  62. The rsyslog-pgsql package contains a dynamic shared object that will add
  63. PostgreSQL database support to rsyslog.
  64. %package elasticsearch
  65. Summary: ElasticSearch output module for rsyslog
  66. Group: system
  67. Requires: %name = %version-%release
  68. BuildRequires: curl-devel
  69. %description elasticsearch
  70. This module provides the capability for rsyslog to feed logs directly into
  71. Elasticsearch.
  72. %package gssapi
  73. Summary: GSSAPI authentication and encryption support for rsyslog
  74. Group: system
  75. Requires: %name = %version-%release
  76. BuildRequires: krb5-devel
  77. %description gssapi
  78. The rsyslog-gssapi package contains the rsyslog plugins which support GSSAPI
  79. authentication and secure connections. GSSAPI is commonly used for Kerberos
  80. authentication.
  81. %package relp
  82. Summary: RELP protocol support for rsyslog
  83. Group: system
  84. Requires: %name = %version-%release
  85. BuildRequires: librelp-devel >= 1.2.5
  86. %description relp
  87. The rsyslog-relp package contains the rsyslog plugins that provide
  88. the ability to receive syslog messages via the reliable RELP
  89. protocol.
  90. %package gnutls
  91. Summary: TLS protocol support for rsyslog
  92. Group: system
  93. Requires: %name = %version-%release
  94. BuildRequires: gnutls-devel
  95. %description gnutls
  96. The rsyslog-gnutls package contains the rsyslog plugins that provide the
  97. ability to receive syslog messages via upcoming syslog-transport-tls
  98. IETF standard protocol.
  99. %package snmp
  100. Summary: SNMP protocol support for rsyslog
  101. Group: system
  102. Requires: %name = %version-%release
  103. BuildRequires: net-snmp-devel
  104. %description snmp
  105. The rsyslog-snmp package contains the rsyslog plugin that provides the
  106. ability to send syslog messages as SNMPv1 and SNMPv2c traps.
  107. %debug_package
  108. %prep
  109. %setup -q
  110. #perl -pi -e 's|^extern char \*strdup.*$||' grammar/lexer.c
  111. autoreconf -vif
  112. %build
  113. export CFLAGS="$RPM_OPT_FLAGS -fpie -DSYSLOGD_PIDNAME=\\\"syslogd.pid\\\""
  114. export LDFLAGS="-pie -Wl,-z,relro -Wl,-z,now"
  115. export PYTHON=%{__python3}
  116. %configure \
  117. --disable-static \
  118. --disable-testbench \
  119. --enable-mysql \
  120. --enable-pgsql \
  121. --enable-elasticsearch \
  122. --enable-gssapi-krb5 \
  123. --enable-imfile \
  124. --enable-imptcp \
  125. --enable-imttcp \
  126. --enable-kmsg \
  127. --enable-omprog \
  128. --enable-relp \
  129. --enable-gnutls \
  130. --enable-mail \
  131. --enable-snmp \
  132. --enable-unlimited-select \
  133. %if %{with systemd}
  134. --enable-imjournal \
  135. --enable-omjournal \
  136. %endif
  137. %{nil}
  138. make
  139. %install
  140. rm -rf %{buildroot}
  141. make install DESTDIR=%{buildroot}
  142. install -d -m 755 %{buildroot}%{_sysconfdir}/sysconfig
  143. install -d -m 755 %{buildroot}%{_sysconfdir}/logrotate.d
  144. install -d -m 755 %{buildroot}%{_sysconfdir}/rsyslog.d
  145. install -d -m 700 %{buildroot}%{rsyslog_statedir}
  146. install -d -m 700 %{buildroot}%{rsyslog_pkidir}
  147. install -p -m 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/rsyslog.conf
  148. install -p -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/rsyslog
  149. %if %{with systemd}
  150. install -Dpm644 %{SOURCE5} %{buildroot}%{_unitdir}/rsyslog.service
  151. install -p -m 644 %{SOURCE6} %{buildroot}%{_sysconfdir}/logrotate.d/syslog
  152. %else
  153. install -d -m 755 %{buildroot}%{_initrddir}
  154. install -p -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/rsyslog
  155. install -p -m 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/logrotate.d/syslog
  156. %endif
  157. #get rid of *.la
  158. rm %{buildroot}/%{_libdir}/rsyslog/*.la
  159. %clean
  160. rm -rf %{buildroot}
  161. %post
  162. for n in /var/log/{messages,secure,maillog,spooler}
  163. do
  164. [ -f $n ] && continue
  165. umask 066 && touch $n
  166. done
  167. %if %{with systemd}
  168. %systemd_post rsyslog.service
  169. %else
  170. /sbin/chkconfig --add rsyslog
  171. %endif
  172. %preun
  173. %if %{with systemd}
  174. %systemd_preun rsyslog.service
  175. %else
  176. if [ $1 = 0 -o -x /usr/bin/systemctl ]; then
  177. service rsyslog stop >/dev/null 2>&1 ||:
  178. /sbin/chkconfig --del rsyslog
  179. fi
  180. %endif
  181. %postun
  182. %if %{with systemd}
  183. %systemd_postun_with_restart rsyslog.service
  184. %else
  185. if [ "$1" -ge "1" ]; then
  186. service rsyslog condrestart > /dev/null 2>&1 ||:
  187. fi
  188. %endif
  189. %files
  190. %defattr(-,root,root,-)
  191. %license COPYING
  192. %doc AUTHORS NEWS README ChangeLog
  193. %dir %{_libdir}/rsyslog
  194. %{_libdir}/rsyslog/fmhash.so
  195. %{_libdir}/rsyslog/fmhttp.so
  196. %{_libdir}/rsyslog/imfile.so
  197. %{_libdir}/rsyslog/imklog.so
  198. %{_libdir}/rsyslog/imkmsg.so
  199. %{_libdir}/rsyslog/immark.so
  200. %{_libdir}/rsyslog/imptcp.so
  201. %{_libdir}/rsyslog/imtcp.so
  202. %{_libdir}/rsyslog/imudp.so
  203. %{_libdir}/rsyslog/imuxsock.so
  204. %{_libdir}/rsyslog/lmcry_gcry.so
  205. %{_libdir}/rsyslog/lmnet.so
  206. %{_libdir}/rsyslog/lmnetstrms.so
  207. %{_libdir}/rsyslog/lmnsd_ptcp.so
  208. %{_libdir}/rsyslog/lmregexp.so
  209. %{_libdir}/rsyslog/lmtcpclt.so
  210. %{_libdir}/rsyslog/lmtcpsrv.so
  211. %{_libdir}/rsyslog/lmzlibw.so
  212. %{_libdir}/rsyslog/mmexternal.so
  213. %{_libdir}/rsyslog/omprog.so
  214. %{_libdir}/rsyslog/omtesting.so
  215. %{_libdir}/rsyslog/ommail.so
  216. %config(noreplace) %{_sysconfdir}/rsyslog.conf
  217. %config(noreplace) %{_sysconfdir}/sysconfig/rsyslog
  218. %config(noreplace) %{_sysconfdir}/logrotate.d/syslog
  219. %dir %{_sysconfdir}/rsyslog.d
  220. %dir %{rsyslog_statedir}
  221. %dir %{rsyslog_pkidir}
  222. %{_sbindir}/rsyslogd
  223. %{_mandir}/*/*
  224. %if %{with systemd}
  225. %{_libdir}/rsyslog/imjournal.so
  226. %{_libdir}/rsyslog/omjournal.so
  227. %{_unitdir}/rsyslog.service
  228. %else
  229. %{_initrddir}/rsyslog
  230. %endif
  231. %files mysql
  232. %defattr(-,root,root)
  233. %doc plugins/ommysql/createDB.sql
  234. %{_libdir}/rsyslog/ommysql.so
  235. %files pgsql
  236. %defattr(-,root,root)
  237. %doc plugins/ompgsql/createDB.sql
  238. %{_libdir}/rsyslog/ompgsql.so
  239. %files elasticsearch
  240. %defattr(-,root,root)
  241. %{_libdir}/rsyslog/omelasticsearch.so
  242. %files gssapi
  243. %defattr(-,root,root)
  244. %{_libdir}/rsyslog/lmgssutil.so
  245. %{_libdir}/rsyslog/imgssapi.so
  246. %{_libdir}/rsyslog/omgssapi.so
  247. %files relp
  248. %defattr(-,root,root)
  249. %{_libdir}/rsyslog/imrelp.so
  250. %{_libdir}/rsyslog/omrelp.so
  251. %files gnutls
  252. %defattr(-,root,root)
  253. %{_libdir}/rsyslog/lmnsd_gtls.so
  254. %files snmp
  255. %defattr(-,root,root)
  256. %{_libdir}/rsyslog/omsnmp.so
  257. %changelog
  258. * Wed Aug 14 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2406.0-1
  259. - new upstream release.
  260. * Thu May 19 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2204.1-1
  261. - new upstream release.
  262. * Sat Dec 25 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2110.0-2
  263. - fixed a typo in logrotate script on systemd.
  264. * Fri Dec 24 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2110.0-1
  265. - new upstream release.
  266. - fixed logrotate script on systemd.
  267. * Thu Mar 25 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2102.0-1
  268. - new upstream release.
  269. * Wed Sep 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2008.0-2
  270. - fixed systemd-unit.
  271. * Tue Sep 08 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2008.0-1
  272. - new upstream release.
  273. - dropped Patch0: merged into upstream.
  274. * Sun Apr 12 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2002.0-1
  275. - new upstream release.
  276. - enabled elasticsearch support.
  277. - added systemd support (disabled as default).
  278. * Fri Oct 04 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.1910.0-1
  279. - new upstream release.
  280. * Sun May 26 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.38.0-2
  281. - enabled omprog module.
  282. * Wed Nov 07 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.38.0-1
  283. - new upstream release.
  284. * Sun Feb 25 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.32.0-1
  285. - new upstream release.
  286. - dropped Patch1: fixed in upstream.
  287. * Wed Dec 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.15.0-1
  288. - new upstream release.
  289. - built with gnutls-3.4.x.
  290. * Tue Jun 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.6.7-2
  291. - fixed an obsolete expression in rsyslog.conf.
  292. * Thu Jan 8 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.6.7-1
  293. - new upstream release.
  294. * Mon Jun 16 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.6.3-1
  295. - new upstream release.
  296. * Wed Mar 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.6.5-2
  297. - rebuild with net-snmp-5.7.1
  298. * Sun Apr 03 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.6.5-1
  299. - new upstream release
  300. * Wed Dec 22 2010 IWAI, Masaharu <iwai@alib.jp> 5.6.2-1
  301. - build for Vine Linux: based Fedora 5.6.2-1.fc15
  302. * Mon Dec 20 2010 Tomas Heinrich <theinric@redhat.com> 5.6.2-1
  303. - upgrade to new upstream stable version 5.6.2
  304. - drop rsyslog-5.5.7-remove_include.patch; applied upstream
  305. - provide omsnmp module
  306. - use correct name for lock file (#659398)
  307. - enable specification of the pid file (#579411)
  308. - init script adjustments
  309. * Wed Oct 06 2010 Tomas Heinrich <theinric@redhat.com> 5.5.7-1
  310. - upgrade to upstream version 5.5.7
  311. - update configuration and init files for the new major version
  312. - add several directories for storing auxiliary data
  313. - add ChangeLog to documentation
  314. - drop unlimited-select.patch; integrated upstream
  315. - add rsyslog-5.5.7-remove_include.patch to fix compilation
  316. * Tue Sep 07 2010 Tomas Heinrich <theinric@redhat.com> 4.6.3-2
  317. - build rsyslog with PIE and RELRO
  318. * Thu Jul 15 2010 Tomas Heinrich <theinric@redhat.com> 4.6.3-1
  319. - upgrade to new upstream stable version 4.6.3
  320. * Wed Apr 07 2010 Tomas Heinrich <theinric@redhat.com> 4.6.2-1
  321. - upgrade to new upstream stable version 4.6.2
  322. - correct the default value of the OMFileFlushOnTXEnd directive
  323. * Thu Feb 11 2010 Tomas Heinrich <theinric@redhat.com> 4.4.2-6
  324. - modify rsyslog-4.4.2-unlimited-select.patch so that
  325. running autoreconf is not needed
  326. - remove autoconf, automake, libtool from BuildRequires
  327. - change exec-prefix to nil
  328. * Wed Feb 10 2010 Tomas Heinrich <theinric@redhat.com> 4.4.2-5
  329. - remove '_smp_mflags' make argument as it seems to be
  330. producing corrupted builds
  331. * Mon Feb 08 2010 Tomas Heinrich <theinric@redhat.com> 4.4.2-4
  332. - redefine _libdir as it doesn't use _exec_prefix
  333. * Thu Dec 17 2009 Tomas Heinrich <theinric@redhat.com> 4.4.2-3
  334. - change exec-prefix to /
  335. * Wed Dec 09 2009 Robert Scheck <robert@fedoraproject.org> 4.4.2-2
  336. - run libtoolize to avoid errors due mismatching libtool version
  337. * Thu Dec 03 2009 Tomas Heinrich <theinric@redhat.com> 4.4.2-1
  338. - upgrade to new upstream stable version 4.4.2
  339. - add support for arbitrary number of open file descriptors
  340. * Mon Sep 14 2009 Tomas Heinrich <theinric@redhat.com> 4.4.1-2
  341. - adjust init script according to guidelines (#522071)
  342. * Thu Sep 03 2009 Tomas Heinrich <theinric@redhat.com> 4.4.1-1
  343. - upgrade to new upstream stable version
  344. * Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 4.2.0-3
  345. - rebuilt with new openssl
  346. * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.0-2
  347. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  348. * Tue Jul 14 2009 Tomas Heinrich <theinric@redhat.com> 4.2.0-1
  349. - upgrade
  350. * Mon Apr 13 2009 Tomas Heinrich <theinric@redhat.com> 3.21.11-1
  351. - upgrade
  352. * Tue Mar 31 2009 Lubomir Rintel <lkundrak@v3.sk> 3.21.10-4
  353. - Backport HUPisRestart option
  354. * Wed Mar 18 2009 Tomas Heinrich <theinric@redhat.com> 3.21.10-3
  355. - fix variables' type conversion in expression-based filters (#485937)
  356. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.21.10-2
  357. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  358. * Tue Feb 10 2009 Tomas Heinrich <theinric@redhat.com> 3.21.10-1
  359. - upgrade
  360. * Sat Jan 24 2009 Caolán McNamara <caolanm@redhat.com> 3.21.9-3
  361. - rebuild for dependencies
  362. * Wed Jan 07 2009 Tomas Heinrich <theinric@redhat.com> 3.21.9-2
  363. - fix several legacy options handling
  364. - fix internal message output (#478612)
  365. * Mon Dec 15 2008 Peter Vrabec <pvrabec@redhat.com> 3.21.9-1
  366. - update is fixing $AllowedSender security issue
  367. * Mon Sep 15 2008 Peter Vrabec <pvrabec@redhat.com> 3.21.3-4
  368. - use RPM_OPT_FLAGS
  369. - use same pid file and logrotate file as syslog-ng (#441664)
  370. - mark config files as noreplace (#428155)
  371. * Mon Sep 01 2008 Tomas Heinrich <theinric@redhat.com> 3.21.3-3
  372. - fix a wrong module name in the rsyslog.conf manual page (#455086)
  373. - expand the rsyslog.conf manual page (#456030)
  374. * Thu Aug 28 2008 Tomas Heinrich <theinric@redhat.com> 3.21.3-2
  375. - fix clock rollback issue (#460230)
  376. * Wed Aug 20 2008 Peter Vrabec <pvrabec@redhat.com> 3.21.3-1
  377. - upgrade to bugfix release
  378. * Wed Jul 23 2008 Peter Vrabec <pvrabec@redhat.com> 3.21.0-1
  379. - upgrade
  380. * Mon Jul 14 2008 Peter Vrabec <pvrabec@redhat.com> 3.19.9-2
  381. - adjust default config file
  382. * Fri Jul 11 2008 Lubomir Rintel <lkundrak@v3.sk> 3.19.9-1
  383. - upgrade
  384. * Wed Jun 25 2008 Peter Vrabec <pvrabec@redhat.com> 3.19.7-3
  385. - rebuild because of new gnutls
  386. * Fri Jun 13 2008 Peter Vrabec <pvrabec@redhat.com> 3.19.7-2
  387. - do not translate Oopses (#450329)
  388. * Fri Jun 13 2008 Peter Vrabec <pvrabec@redhat.com> 3.19.7-1
  389. - upgrade
  390. * Wed May 28 2008 Peter Vrabec <pvrabec@redhat.com> 3.19.4-1
  391. - upgrade
  392. * Mon May 26 2008 Peter Vrabec <pvrabec@redhat.com> 3.19.3-1
  393. - upgrade to new upstream release
  394. * Wed May 14 2008 Tomas Heinrich <theinric@redhat.com> 3.16.1-1
  395. - upgrade
  396. * Tue Apr 08 2008 Peter Vrabec <pvrabec@redhat.com> 3.14.1-5
  397. - prevent undesired error description in legacy
  398. warning messages
  399. * Tue Apr 08 2008 Peter Vrabec <pvrabec@redhat.com> 3.14.1-4
  400. - adjust symbol lookup method to 2.6 kernel
  401. * Tue Apr 08 2008 Peter Vrabec <pvrabec@redhat.com> 3.14.1-3
  402. - fix segfault of expression based filters
  403. * Mon Apr 07 2008 Peter Vrabec <pvrabec@redhat.com> 3.14.1-2
  404. - init script fixes (#441170,#440968)
  405. * Fri Apr 04 2008 Peter Vrabec <pvrabec@redhat.com> 3.14.1-1
  406. - upgrade
  407. * Tue Mar 25 2008 Peter Vrabec <pvrabec@redhat.com> 3.12.4-1
  408. - upgrade
  409. * Wed Mar 19 2008 Peter Vrabec <pvrabec@redhat.com> 3.12.3-1
  410. - upgrade
  411. - fix some significant memory leaks
  412. * Tue Mar 11 2008 Peter Vrabec <pvrabec@redhat.com> 3.12.1-2
  413. - init script fixes (#436854)
  414. - fix config file parsing (#436722)
  415. * Thu Mar 06 2008 Peter Vrabec <pvrabec@redhat.com> 3.12.1-1
  416. - upgrade
  417. * Wed Mar 05 2008 Peter Vrabec <pvrabec@redhat.com> 3.12.0-1
  418. - upgrade
  419. * Mon Feb 25 2008 Peter Vrabec <pvrabec@redhat.com> 3.11.5-1
  420. - upgrade
  421. * Fri Feb 01 2008 Peter Vrabec <pvrabec@redhat.com> 3.11.0-1
  422. - upgrade to the latests development release
  423. - provide PostgresSQL support
  424. - provide GSSAPI support
  425. * Mon Jan 21 2008 Peter Vrabec <pvrabec@redhat.com> 2.0.0-7
  426. - change from requires sysklogd to conflicts sysklogd
  427. * Fri Jan 18 2008 Peter Vrabec <pvrabec@redhat.com> 2.0.0-6
  428. - change logrotate file
  429. - use rsyslog own pid file
  430. * Thu Jan 17 2008 Peter Vrabec <pvrabec@redhat.com> 2.0.0-5
  431. - fixing bad descriptor (#428775)
  432. * Wed Jan 16 2008 Peter Vrabec <pvrabec@redhat.com> 2.0.0-4
  433. - rename logrotate file
  434. * Wed Jan 16 2008 Peter Vrabec <pvrabec@redhat.com> 2.0.0-3
  435. - fix post script and init file
  436. * Wed Jan 16 2008 Peter Vrabec <pvrabec@redhat.com> 2.0.0-2
  437. - change pid filename and use logrotata script from sysklogd
  438. * Tue Jan 15 2008 Peter Vrabec <pvrabec@redhat.com> 2.0.0-1
  439. - upgrade to stable release
  440. - spec file clean up
  441. * Wed Jan 02 2008 Peter Vrabec <pvrabec@redhat.com> 1.21.2-1
  442. - new upstream release
  443. * Thu Dec 06 2007 Release Engineering <rel-eng at fedoraproject dot org> - 1.19.11-2
  444. - Rebuild for deps
  445. * Thu Nov 29 2007 Peter Vrabec <pvrabec@redhat.com> 1.19.11-1
  446. - new upstream release
  447. - add conflicts (#400671)
  448. * Mon Nov 19 2007 Peter Vrabec <pvrabec@redhat.com> 1.19.10-1
  449. - new upstream release
  450. * Wed Oct 03 2007 Peter Vrabec <pvrabec@redhat.com> 1.19.6-3
  451. - remove NUL character from recieved messages
  452. * Tue Sep 25 2007 Tomas Heinrich <theinric@redhat.com> 1.19.6-2
  453. - fix message suppression (303341)
  454. * Tue Sep 25 2007 Tomas Heinrich <theinric@redhat.com> 1.19.6-1
  455. - upstream bugfix release
  456. * Tue Aug 28 2007 Peter Vrabec <pvrabec@redhat.com> 1.19.2-1
  457. - upstream bugfix release
  458. - support for negative app selector, patch from
  459. theinric@redhat.com
  460. * Fri Aug 17 2007 Peter Vrabec <pvrabec@redhat.com> 1.19.0-1
  461. - new upstream release with MySQL support(as plugin)
  462. * Wed Aug 08 2007 Peter Vrabec <pvrabec@redhat.com> 1.18.1-1
  463. - upstream bugfix release
  464. * Mon Aug 06 2007 Peter Vrabec <pvrabec@redhat.com> 1.18.0-1
  465. - new upstream release
  466. * Thu Aug 02 2007 Peter Vrabec <pvrabec@redhat.com> 1.17.6-1
  467. - upstream bugfix release
  468. * Mon Jul 30 2007 Peter Vrabec <pvrabec@redhat.com> 1.17.5-1
  469. - upstream bugfix release
  470. - fix typo in provides
  471. * Wed Jul 25 2007 Jeremy Katz <katzj@redhat.com> - 1.17.2-4
  472. - rebuild for toolchain bug
  473. * Tue Jul 24 2007 Peter Vrabec <pvrabec@redhat.com> 1.17.2-3
  474. - take care of sysklogd configuration files in %%post
  475. * Tue Jul 24 2007 Peter Vrabec <pvrabec@redhat.com> 1.17.2-2
  476. - use EVR in provides/obsoletes sysklogd
  477. * Mon Jul 23 2007 Peter Vrabec <pvrabec@redhat.com> 1.17.2-1
  478. - upstream bug fix release
  479. * Fri Jul 20 2007 Peter Vrabec <pvrabec@redhat.com> 1.17.1-1
  480. - upstream bug fix release
  481. - include html docs (#248712)
  482. - make "-r" option compatible with sysklogd config (248982)
  483. * Tue Jul 17 2007 Peter Vrabec <pvrabec@redhat.com> 1.17.0-1
  484. - feature rich upstream release
  485. * Thu Jul 12 2007 Peter Vrabec <pvrabec@redhat.com> 1.15.1-2
  486. - use obsoletes and hadle old config files
  487. * Wed Jul 11 2007 Peter Vrabec <pvrabec@redhat.com> 1.15.1-1
  488. - new upstream bugfix release
  489. * Tue Jul 10 2007 Peter Vrabec <pvrabec@redhat.com> 1.15.0-1
  490. - new upstream release introduce capability to generate output
  491. file names based on templates
  492. * Tue Jul 03 2007 Peter Vrabec <pvrabec@redhat.com> 1.14.2-1
  493. - new upstream bugfix release
  494. * Mon Jul 02 2007 Peter Vrabec <pvrabec@redhat.com> 1.14.1-1
  495. - new upstream release with IPv6 support
  496. * Tue Jun 26 2007 Peter Vrabec <pvrabec@redhat.com> 1.13.5-3
  497. - add BuildRequires for zlib compression feature
  498. * Mon Jun 25 2007 Peter Vrabec <pvrabec@redhat.com> 1.13.5-2
  499. - some spec file adjustments.
  500. - fix syslog init script error codes (#245330)
  501. * Fri Jun 22 2007 Peter Vrabec <pvrabec@redhat.com> 1.13.5-1
  502. - new upstream release
  503. * Fri Jun 22 2007 Peter Vrabec <pvrabec@redhat.com> 1.13.4-2
  504. - some spec file adjustments.
  505. * Mon Jun 18 2007 Peter Vrabec <pvrabec@redhat.com> 1.13.4-1
  506. - upgrade to new upstream release
  507. * Wed Jun 13 2007 Peter Vrabec <pvrabec@redhat.com> 1.13.2-2
  508. - DB support off
  509. * Tue Jun 12 2007 Peter Vrabec <pvrabec@redhat.com> 1.13.2-1
  510. - new upstream release based on redhat patch
  511. * Fri Jun 08 2007 Peter Vrabec <pvrabec@redhat.com> 1.13.1-2
  512. - rsyslog package provides its own kernel log. daemon (rklogd)
  513. * Mon Jun 04 2007 Peter Vrabec <pvrabec@redhat.com> 1.13.1-1
  514. - Initial rpm build