Re: [systemd-devel] Fwd: Remove specific journal file filter

2021-06-16 Thread Vito Caputo
On Wed, Jun 16, 2021 at 11:24:55PM +0530, mihir bhatt wrote: > Hi Team, > > I am using *sd_journal_add_match()* API to add filter into journal files. > Is there any way to remove/modify existing filter rather than remove all > using *sd_journal_flush_matches().* > > *For example :* > > Current

[systemd-devel] Fwd: Remove specific journal file filter

2021-06-16 Thread mihir bhatt
Hi Team, I am using *sd_journal_add_match()* API to add filter into journal files. Is there any way to remove/modify existing filter rather than remove all using *sd_journal_flush_matches().* *For example :* Current method: To remove F_3 : sd_journal_add_match( j , "F_1" , 4);

Re: [systemd-devel] bamboo agent does not start from systemd

2021-06-16 Thread Silvio Knizek
Am Mittwoch, dem 16.06.2021 um 10:00 -0400 schrieb vad...@gmail.com: > Bamboo agent install provides bamboo-agent.sh as part of the install. > It starts the bamboo agent. It works fine provided there is no service > unit file defined. If I define the service unit file it does not start > with

[systemd-devel] systemd automounter does not mount Window share containing a space

2021-06-16 Thread André Weidemann
Hi, I've been trying to mount a Windows share containing a space using mount.cifs via systemd automounter without success. I placed mnt-data.mount and mnt-data.automount under /etc/systemd/system/ and put the Windows share path behind "What=" in the .mount file. Single or double quotes do not

Re: [systemd-devel] Alias for SMTP providers [ie. mutually exclusive service alternatives]

2021-06-16 Thread Kenneth Porter
--On Wednesday, June 16, 2021 11:46 AM +0300 Mantas Mikulėnas wrote: What does "needs to send mail" even mean? That /usr/sbin/sendmail can be called to queue a message? That you can talk to localhost:25? A well behaving MTA actually make /usr/sbin/sendmail work without the main mail daemon

Re: [systemd-devel] Alias for SMTP providers [ie. mutually exclusive service alternatives]

2021-06-16 Thread Mantas Mikulėnas
On Wed, Jun 16, 2021 at 10:43 AM Lennart Poettering wrote: > On Di, 15.06.21 02:03, Kenneth Porter (sh...@sewingwitch.com) wrote: > > > What happens if I list multiple services in a Wants= and After= clause > that > > are mutually exclusive (eg. sendmail/postfix/exim? How can I say "This > unit

Re: [systemd-devel] Alias for SMTP providers [ie. mutually exclusive service alternatives]

2021-06-16 Thread Lennart Poettering
On Di, 15.06.21 02:03, Kenneth Porter (sh...@sewingwitch.com) wrote: > What happens if I list multiple services in a Wants= and After= clause that > are mutually exclusive (eg. sendmail/postfix/exim? How can I say "This unit > needs to send mail" without knowing which is enabled? What does