View previous topic :: View next topic |
Author |
Message |
-lk- n00b
Joined: 26 May 2015 Posts: 10
|
Posted: Tue May 26, 2015 7:17 pm Post subject: proftpd with systemd ignores log settings |
|
|
ProFTPd allows to redirect logging to specific file using SystemLog directive in proftpd.conf
Since it did not work for me I made a quick research and found that proftpd.service looks like:
Quote: | [Service]
Type=simple
ExecStart=/usr/sbin/proftpd --nodaemon
StandardOutput=syslog
StandardError=syslog |
Using --nodaemon forces proftpd to run in foreground with logging redirected to stdout and stderr
Together with StandardOutput and StandardError set to syslog it makes that whatever SystemLog directive is used, it is always logs everything to syslog, always effectively ignoring SystemLog directive.
Does anyone has any clue
a) why proftpd.service is not made as
Quote: | [Service]
Type=forking
ExecStart=/usr/sbin/proftpd |
b) how to let this know to someone responsible for mantaning proftpd support in systemd?
Thanks |
|
Back to top |
|
|
idella4 Retired Dev
Joined: 09 Jun 2006 Posts: 1600 Location: Australia, Perth
|
Posted: Wed May 27, 2015 6:27 am Post subject: |
|
|
There are 2 proxy maintainers but also a dev is listed;
<maintainer>
<email>slyfox@gentoo.org</email>
<name>Sergei Trofimovich</name>
There is a systemd project and a dev who is heavily into that is floppym
b) how to let this know to someone responsible for mantaning proftpd support in systemd?
Traditionally simply make a bug. _________________ idella4@aus |
|
Back to top |
|
|
|