Wed, 08 May 2024 15:10:01 UTC | login

Information for build daemonize-1.7.3-1.el6

ID687
Package Namedaemonize
Version1.7.3
Release1.el6
Epoch
SummaryRun a command as a Unix daemon
Descriptiondaemonize runs a command as a Unix daemon. As defined in W. Richard Stevens' 1990 book, Unix Network Programming (Addison-Wesley, 1990), a daemon is "a process that executes 'in the background' (i.e., without an associated terminal or login shell) either waiting for some event to occur, or waiting to perform some specified task on a periodic basis." Upon startup, a typical daemon program will: - Close all open file descriptors (especially standard input, standard output and standard error) - Change its working directory to the root filesystem, to ensure that it doesn’t tie up another filesystem and prevent it from being unmounted - Reset its umask value - Run in the background (i.e., fork) - Disassociate from its process group (usually a shell), to insulate itself from signals (such as HUP) sent to the process group - Ignore all terminal I/O signals - Disassociate from the control terminal (and take steps not to reacquire one) - Handle any SIGCLD signals Most programs that are designed to be run as daemons do that work for themselves. However, you’ll occasionally run across one that does not. When you must run a daemon program that does not properly make itself into a true Unix daemon, you can use daemonize to force it to run as a true daemon.
Built byarrfab
State complete
Volume DEFAULT
StartedFri, 13 Feb 2015 13:35:57 UTC
CompletedFri, 13 Feb 2015 13:38:01 UTC
Taskbuild (infrastructure6-el6, daemonize-1.7.3-1.el6.src.rpm)
Tags
infrastructure6-testing
RPMs
src
daemonize-1.7.3-1.el6.src.rpm (info) (download)
i686
daemonize-1.7.3-1.el6.i686.rpm (info) (download)
daemonize-debuginfo-1.7.3-1.el6.i686.rpm (info) (download)
x86_64
daemonize-1.7.3-1.el6.x86_64.rpm (info) (download)
daemonize-debuginfo-1.7.3-1.el6.x86_64.rpm (info) (download)
Logs
i686
root.log
build.log
state.log
x86_64
root.log
build.log
state.log
Changelog * Wed Nov 02 2011 Sven Lankes <sven@lank.es> - 1.7.3-1 - update to latest upstream release * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Mon Jul 06 2009 Gary T. Giesen <giesen@snickers.org> 1.5.6-1 - New upstream version, incorporates previous Makefile patch * Sun Jul 05 2009 Gary T. Giesen <giesen@snickers.org> 1.5.4-5 - Changed spec file to preserve timestamp on files for make install * Sun Jul 05 2009 Gary T. Giesen <giesen@snickers.org> 1.5.4-4 - Fixed missed line in patch for compiler flags * Sun Jul 05 2009 Gary T. Giesen <giesen@snickers.org> 1.5.4-3 - Further spec file cleanup - New Makefile patch to make build respect compiler flags and install man pages * Sun Jul 05 2009 Gary T. Giesen <giesen@snickers.org> 1.5.4-2 - Spec file cleanup for consistency with Fedora Packaging Guidelines - Added install for man pages (it's not installed by 'make install') * Sat Jul 04 2009 Gary T. Giesen <giesen@snickers.org> 1.5.4-1 - Initial Spec file creation for Fedora