Displaying 20 results from an estimated 100 matches similar to: "[tftpd PATCH 0/5] pidfile option and syslog fix"
2004 Jan 13
1
tftpd-hpa suggestions
Hello, Peter and others!
there are some issues regarding the tftp-hpa server:
1. Running as Windows service seems to require that the application does
not detach (otherwise "net start" says smth. like "could not start,
the service didn't report any errors").
The attached patch adds the option "-n", which can be used to have
tftpd run in foreground.
2009 Jul 19
3
[PATCH] tftpd.c: write a pid file in standalone mode
The default path is /var/run/tftpd-hpa.pid, which can be overridden
by the newly introduced -P option. On normal termination (SIGTERM
or SIGINT) the pid file is automatically removed.
Moved setting the umask later, right before entering the select loop,
so that it does not affect the permissions of the pid file.
Signed-off-by: Ferenc Wagner <wferi at niif.hu>
---
tftpd/tftpd.c | 38
2015 Nov 04
1
[PATCH 0/1] sparsify: Let --in-place capture ^C and shut down gracefully
This patch is easier to read if you use the 'git show -w' option.
Also observe that:
fun a -> ( fun () -> (* code *) )
(ie. returning a closure) is identical to:
fun a () -> (* code *)
Rich.
2014 Mar 11
21
[PATCH v2 00/18] Add discard support.
This still isn't working at the moment. See:
http://marc.info/?t=139457409300003&r=1&w=2
This set of patches:
- Adds new APIs to support discard in libguestfs.
- Adds discard support to virt-format.
- Adds discard support to virt-sysprep.
- Implements virt-sparsify --in-place.
Rich.
2016 Aug 05
6
[PATCH 0/4] sparsify: Warn instead of error if a filesystem cannot be fstrimmed.
Fix for
https://bugzilla.redhat.com/show_bug.cgi?id=1364347
1998 Aug 13
0
samba pidfile
Hi all,
sorry about the samba newbie question, but..
where is pidfile for the smbd processes that are currently running?
I know smbstatus, but it reports the number of current connections ( I
think) which is one less than a ps -ef smbd (or equivalent) outputs.
Basically, I am looking at a script to kill all smbd and the nmbd
processes. Unfortunately, O/S is solaris, and I don't have the
2007 Sep 28
2
DO NOT REPLY [Bug 4998] New: [PATCH] rsync returns from fork before a valid pidfile is created
https://bugzilla.samba.org/show_bug.cgi?id=4998
Summary: [PATCH] rsync returns from fork before a valid pidfile
is created
Product: rsync
Version: 2.6.9
Platform: Other
URL: http://bugs.gentoo.org/show_bug.cgi?id=192075
OS/Version: FreeBSD
Status: NEW
Severity: normal
Priority: P3
2009 May 18
1
tftpd-hpa and pidfile
Hello,
i've got a problem on lenny with tftpd-hpa
When i launch it from /etc/init.d/tftpd-hpa start, there is no pidfile created.
what is the way to get it ?
thank you
--
---------------------------------------------------------------
Pascal Legrand
*IUT de Chartres* - _Service Informatique_
---------------------------------------------------------------
1, place Roger Joly
28000 Chartres
2001 Jun 22
1
PATCH: pidfile/sigterm race
If one is using the pidfile as an indicator of sshd's status,
it is possible to kill sshd before the sigterm handler gets
installed, since the pidfile is written out before the signal
handlers are setup.
The solution is to simply write the pidfile after the signal
handlers are setup. Here's the patch.
Rob
--- sshd.c.orig Fri Jun 22 11:16:41 2001
+++ sshd.c Fri Jun 22 11:18:32 2001
@@
2017 May 04
0
running tomcat as non-root user.. (/var/run pidfile issue)
On Thu, 4 May 2017, Jason Welsh wrote:
> hey folks, we are migrating our tomcat setup over to centos 7. Im
> converting init-scripts over to systemd services and whatnot.. One
> thing that Ive noticed is that my systemd startup script cant seem
> to write to /var/run as a non-root user to drop a pidfile.. If I
> create a directory in /var/run owned by my user, it gets wiped out
2017 May 04
1
running tomcat as non-root user.. (/var/run pidfile issue)
Am 04.05.2017 um 18:35 schrieb Paul Heinlein:
> The second method is to add an ExecStartPre to
> /usr/lib/systemd/system/tomcat.service, e.g.,
Sorry, no. Better not touch the service files in /usr/lib/systemd/system
which ship with the associated packages. You create user custom service
files in /etc/systemd/system/. Easiest by "systemctl edit foo.service".
Alexander
2020 Feb 12
2
feature request for setting alternative pidfile
Hi,
because of an unsupported combination of configuration parameters for
different dovecot services I looked into setting up two dovecot
instances with different configurations on the same host. It looks like
running two different dovecot instances on the same host is not easily
possible because the pidfile seems to be hard-coded and there is no way
to tell dovecot to use a different one, right?
2020 Feb 12
0
feature request for setting alternative pidfile
> On 12/02/2020 17:43 Bjoern Jacke <lists2020 at j3e.de> wrote:
>
>
> Hi,
>
> because of an unsupported combination of configuration parameters for
> different dovecot services I looked into setting up two dovecot
> instances with different configurations on the same host. It looks like
> running two different dovecot instances on the same host is not easily
2005 Jan 30
1
pidfile disabled
Shouldn't it be a compile time option ?
On Sat, 29 Jan 2005 12:53:36 +1000, Geoff Shang <geoff@hitsandpieces.net> wrote:
> Joe Mays wrote:
>
> > The pidfile is not being created on the server I am running icecast2 on (FreeBSD
> > 4.11). The changelog in the source directory says the pidfile was disabled. How was
> > it disabled, why was it disabled, and is
2005 Jan 28
2
pidfile disabled
The pidfile is not being created on the server I am running icecast2 on (FreeBSD
4.11). The changelog in the source directory says the pidfile was disabled. How was
it disabled, why was it disabled, and is there any reason I shouldn't re-enable it?
Joe
2012 Feb 29
2
[PATCH] Start the server if another user has a PID matching our stale pidfile.
If unicorn doesn''t get terminated cleanly (for example if the machine
has its power interrupted) and the pid in the pidfile gets used by
another process, the current unicorn code will exit and not start a
server. This tiny patch fixes that behaviour.
---
lib/unicorn/http_server.rb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/unicorn/http_server.rb
2017 May 04
2
running tomcat as non-root user.. (/var/run pidfile issue)
hey folks, we are migrating our tomcat setup over to centos 7. Im
converting init-scripts over to systemd services and whatnot.. One thing
that Ive noticed is that my systemd startup script cant seem to write to
/var/run as a non-root user to drop a pidfile.. If I create a directory
in /var/run owned by my user, it gets wiped out on reboot.
Ive searched and found this
2008 Jul 24
4
DO NOT REPLY [Bug 5633] New: --pidfile option for rsync daemon
https://bugzilla.samba.org/show_bug.cgi?id=5633
Summary: --pidfile option for rsync daemon
Product: rsync
Version: 3.0.3
Platform: Other
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: arekm@maven.pl
2006 Sep 21
3
FreeBSD startup script, can''t set pidfile
Hi,
I''ve installed puppet gem on freebsd 6.1 and wrote a simple startup
script for puppetmasterd. It starts fine, but doesn''t create the
pidfile, so I can''t stop it. Here is my script:
#!/bin/sh
utility_enable=${utility_enable-"NO"}
utility_flags=${utility_flags-""}
utility_pidfile=${utility_pidfile-"/var/run/puppetmasterd.pid"}
.
2018 Mar 01
7
[PATCH v3 0/6] v2v: Add -o rhv-upload output mode.
v2 -> v3:
- Lots of code cleanups.
- Documentation.
However this is still spooling the file into a temporary before the
upload. It turns out that fixing this is going to require a small
change to qemu.
Rich.