diff options
author | wen <wen@FreeBSD.org> | 2010-05-08 16:54:22 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2010-05-08 16:54:22 +0800 |
commit | 606a67aa240af22ab8e3773f5f90ec0c8d2f3a7f (patch) | |
tree | 0dd86886fbcfc3d215ceef9e297d6cffb1788e82 /devel/Makefile | |
parent | 8e16ab7bbee1eaae719bddf07457379f6e561a81 (diff) | |
download | freebsd-ports-gnome-606a67aa240af22ab8e3773f5f90ec0c8d2f3a7f.tar.gz freebsd-ports-gnome-606a67aa240af22ab8e3773f5f90ec0c8d2f3a7f.tar.zst freebsd-ports-gnome-606a67aa240af22ab8e3773f5f90ec0c8d2f3a7f.zip |
This module associates a PID file with your script for the purpose
of keeping more than one copy from running (concurrency prevention).
It creates the PID file, checks for its existence when the script
is run, terminates the script if there is already an instance running,
and removes the PID file when the script finishes.
This module's objective is to provide a completely simplified
interface that makes adding PID-file-based concurrency prevention
to your script as quick and simple as possible; hence File::Pid::Quick.
For a more nuanced implementation of PID files, please see File::Pid.
WWW: http://search.cpan.org/dist/File-Pid-Quick/Quick.pm
PR: ports/146060
Submitted by: Eric Freeman <freebsdports@chillibear.com>
Diffstat (limited to 'devel/Makefile')
-rw-r--r-- | devel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 249c3a733187..c1284a8dda07 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1565,6 +1565,7 @@ SUBDIR += p5-File-Path-Expand SUBDIR += p5-File-PathConvert SUBDIR += p5-File-Pid + SUBDIR += p5-File-Pid-Quick SUBDIR += p5-File-Policy SUBDIR += p5-File-Random SUBDIR += p5-File-ReadBackwards |