diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2013-05-11 23:17:02 +0400 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2013-05-11 23:17:02 +0400 |
commit | a0b1ace84423e2981192a0950923bcbe7c4b1e0b (patch) | |
tree | 3333307722ce8de917f38b09870896ef926cc204 | |
parent | 6f44c9dc16cb2fb94c2150ffaeeedff419b9063e (diff) | |
download | inetutils-a0b1ace84423e2981192a0950923bcbe7c4b1e0b.tar.gz |
* Don't package syslogd on illumos:
- it need be patched for proper work with /dev/log
(e. i. do not remove it :-)
- if using illumos/solaris libc it should create a door
(/var/run/syslog_door) otherwise syslog() will not write
to syslogd.
This issues are fixed in rsyslog
-rw-r--r-- | debian/changelog | 12 | ||||
-rw-r--r-- | debian/control.in | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 14 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 4e37aca..4478aa6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +inetutils (2:1.9-2+dyson2) unstable; urgency=low + + * Don't package syslogd on illumos: + - it need be patched for proper work with /dev/log + (e. i. do not remove it :-) + - if using illumos/solaris libc it should create a door + (/var/run/syslog_door) otherwise syslog() will not write + to syslogd. + This issues are fixed in rsyslog + + -- Igor Pashev <pashev.igor@gmail.com> Sat, 11 May 2013 23:01:45 +0400 + inetutils (2:1.9-2+dyson1) unstable; urgency=low * syslogd has standard priority on illumos diff --git a/debian/control.in b/debian/control.in index 6c90b0c..ee2ac8c 100644 --- a/debian/control.in +++ b/debian/control.in @@ -70,7 +70,7 @@ Description: trace the IPv4 route to another host Package: inetutils-syslogd Priority: @syslogd:Priority@ -Architecture: any +Architecture: linux-any hurd-any kfreebsd-any Provides: system-log-daemon, ${syslogd:Provides} Conflicts: system-log-daemon, ${syslogd:Provides} Replaces: syslogd diff --git a/debian/rules b/debian/rules index fe80f66..230b73a 100755 --- a/debian/rules +++ b/debian/rules @@ -73,7 +73,7 @@ ifeq ($(DEB_HOST_ARCH_OS),linux) else ifeq ($(DEB_HOST_ARCH_OS),illumos) sed \ -e 's/@inetutils:Priority@/standard/g' \ - -e 's/@syslogd:Priority@/standard/g' \ + -e 's/@syslogd:Priority@/optional/g' \ < debian/control.in \ > debian/control else |