Changelog for
ruby2.3-rubygem-daemons-1.2.3-22.1.x86_64.rpm :
Fri Jun 26 14:00:00 2015 cooloAATTsuse.com
- updated to version 1.2.3
no changelog found
Sun Mar 22 13:00:00 2015 cooloAATTsuse.com
- updated to version 1.2.2
* fix 100% CPU usage bug when using monitor mode.
* increase version number to be able to re-push to rubygems
Mon Mar 9 13:00:00 2015 cooloAATTsuse.com
- updated to version 1.2.0
Sun Oct 12 14:00:00 2014 adrianAATTsuse.de
- adapt to new rubygem packaging style
Fri Aug 10 14:00:00 2012 cooloAATTsuse.com
- updated to version 1.1.9
* daemonize.rb: do srand in the forked child process both in daemonize and call_as_daemon
Thu Apr 14 14:00:00 2011 mrueckertAATTsuse.de
- update to version 1.1.2
* Fixed gemspec to include all needed files.
- additional changes from 1.1.1
* Make the logging facilities work in :mode => :none (i.e. when
calling Daemons.daemonize) (thanks to the input from Peter Hegedus).
- additional changes from 1.1.0
* Honour the options[:app_name] in Daemons.daemonize (thanks to
Ryan Tecco).
* Included a new option :stop_proc to specify a proc that will be
called when a daemonized process receives a request to stop
(thanks to Dave Dupre).
* Only delete the pidfile if the current pid is the original pid
(ghazel).
* Start when restart but no application running (pcreux).
* Silently continue if there is no pidfile (ghazel).
* We now per default wait for processes to stop and kill them
automatically it if they do not stop within a given time
(force_kill_waittime). Use the option --no_wait to not wait for
processes to stop.
* Set log files mode to 0644 (mikehale).
* Set pid file permissions to 0644 (mikehale).
* Added ability to change process uid/gid (mikehale).
* Fix for: If you happen to start a daemon from a process that
has open file descriptors these will stay open. As it is
daemonize.rb only closes ruby IO objects (thanks to Han Holl).
* New reload command (SIGHUP) (thanks to Michael Schuerig).
- split out a doc package
Fri Jun 11 14:00:00 2010 mrueckertAATTsuse.de
- use rubygems_requires macro
Thu Jan 21 13:00:00 2010 mrueckertAATTsuse.de
- spec cleanup
Mon Aug 25 14:00:00 2008 mrueckertAATTsuse.de
- update to version 1.0.10
* By default, we now delete stray pid-files (i.e. pid-files which
result for example from a killed daemon) automatically. This
function can be deactivated by passing :keep_pid_files => true
as an option.
* All pid files of :multiple daemons new get deleted correctly
upon exit of the daemons (reported by Han Holl).
* Use the signal \'KILL\' instead of \'TERM\' on Windows platforms.
* Use exit! in trap(\'TERM\') instead of exit when option
:hard_exit is given (thanks to Han Holl).
* Did some clarification on the exception log
Thu Feb 21 13:00:00 2008 mrueckertAATTsuse.de
- update to version 1.0.9:
new Pid.running? function. Checking whether a process exists by
sending signal \'0\' (added in 1.0.8 and fixed in 1.0.9)