summaryrefslogtreecommitdiffstats
path: root/lib/bb/daemonize.py
AgeCommit message (Collapse)Author
2016-05-12daemonize/prserv/tests/fetch: Convert file() -> open()Richard Purdie
Use python3 compatible functions. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-08-24lib/bb/*.py: Typo fixes/grammar/comment fixes, nothing functional.Robert P. J. Day
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-08-19daemonize.py: Non-functional comment/aesthetic fixes.Robert P. J. Day
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2010-04-11Apply some 2to3 transforms that don't cause issues in 2.6Chris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-04-09Formatting cleanupsChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2009-08-27daemonize: Kill the forcing of umask to 0 in our children.Chris Larson
It forces the daemon umask to the module level UMASK variable, which defaults to 0, so the bitbake daemons end up with a umask of 0. Fixed by setting UMASK to None and making it only run umask when it's not None, so our children will inherit the parent umask Signed-off-by: Chris Larson <clarson@mvista.com>
2007-08-18Add daemonize moduleRichard Purdie