summary refs log tree commit diff
path: root/etc/debian
Commit message (Collapse)AuthorAgeFilesLines
* * change default directory for services from /var/service/ to /service/.Gerrit Pape2008-04-201-2/+2
|
* * doc/faq.html: new.Gerrit Pape2006-03-041-4/+2
| | | | | | | | | | | | | | | | | | | * doc/benefits.html: use sv program instead of runsvstat, runsvctrl; minor. * doc/replaceinit.html, doc/runlevels.html: put getty service directory into /etc/sv/. * doc/runscripts.html: use sv program instead of svwaitup. * etc/*/3, etc/macosx/StartupItems/runit: use sv program instead of svwaitdown. * man/runsv.8: use sv program instead of runsvctrl. * man/sv.8: minor. * Makefile, package/commands: no longer build/install runsvctrl, runsvstat, svwaitdown, svwaitup. * man/runsvctrl.8, man/runsvstat.8, man/svwaitdown.8, man/svwaitup.8: remove; obsolete. * doc/index.html: add faq; remove runsvctrl, runsvstat, svwaitdown, svwaitup. * sv.c: fix usage output.
* * etc/debian/3: test -r -> test -x (thx Alejandro Mery).Gerrit Pape2003-11-111-1/+1
|
* * doc/benefits.html, doc/index.html, doc/replaceinit.html,Gerrit Pape2003-10-291-2/+2
| | | | | | | | doc/runlevels.html, doc/useinit.html: default service directory is /var/service; minor. * etc/2, etc/debian/3, etc/freebsd/3, etc/macosx/StartupItems/runit, etc/openbsd/3, man/runsv.8, man/runsvchdir.8, man/runsvdir.8: default service directory is /var/service.
* * runit.c: user select() on systems that don't provide poll() (buildsGerrit Pape2003-06-171-6/+0
| | | | | | | | | on Mac OSX). * svlogd.c: reset match flag in lineflush() in all cases. * Makefile: build setuidgid in default target. * doc/useinit.html: add instruction to create /etc/runit/2 first. * doc/install.html: minor. 0.9.5.
* debianized.Gerrit Pape2003-06-051-0/+2
|
* * svlogd.c: default log file size is 1M; print verbose message only ifGerrit Pape2003-06-051-1/+0
| | | | | | | | | | | | | | -v is set. * man/svlogd.8: document -v option; minor. * etc/freebsd/3, etc/openbsd/3: check if magic files in /etc/runit/ are executable, not readable. * etc/*/getty-tty*/run: remove utmpset from script. * etc/*/getty-tty*/finish: new: run utmpset. * doc/replaceinit.html: adapt. * setuidgid.c: new: daemontools' setuidgid drop in replacement (not installed by default). * Makefile: build setuidgid. * doc/index.html: update.
* * doc/benefits.html: new.Gerrit Pape2003-02-253-6/+11
| | | | | | | | | | | | | | | | | * doc/index.html, doc/upgrade.html: adapt. * etc/*/1, etc/*/3, etc/*/ctrlaltdel: set permissions on the magic files instead of creating and removing them (can make them symbolic links now); set PATH. * runit.h: new; centralize runit's compiled in magic file names. * runit.c: check permissions of magic files instead of sole existence; conditionally call reboot(RB_AUTOBOOT), reboot(RB_POWER_OFF), reboot(RB_HALT_SYSTEM) if possible; code cleanup. * runit-init.c: set permissions on magic files instead of creating or removing them; code cleanup. * runsvdir.c: detect and tolerate system time warp; code cleanup. * runsv.c, runsvchdir.c, runsvctrl.c, runsvstat.c, svwaitdown.c, svwaitup.c, utmpset.c: code cleanup. 0.8.0.
* * runsv.c: close finish script file descriptor.Gerrit Pape2003-01-242-5/+2
| | | | | | | | | * runsv.c: close logpipe[] instead of sending sigterm to logservice when told to exit, loggers should exit when they see EOF on stdin (thx Paul Jarc). * etc/*/1, etc/*/3: remove explicit 'exit'. * error.h: include <errno.h> (upcoming glibc changes). 0.8.2.
* grmpf, stage 3 was broken.Gerrit Pape2002-09-261-2/+4
|
* adapt stage 3.Gerrit Pape2002-09-261-12/+5
|
* * man/runsv.8, man/runsvdir.8: new.Gerrit Pape2002-09-251-6/+0
| | | | | * utmpset.c: setlock utmp and wtmp file. 0.5.4.
* minor.Gerrit Pape2002-09-241-1/+1
|
* stage 2 adapt.Gerrit Pape2002-09-231-1/+11
|
* do not restart getties in stage 3.Gerrit Pape2002-09-051-3/+0
|
* utmpset in /command. registration requested.Gerrit Pape2002-08-282-4/+1
|
* * utmpset: avoids libutil; compiles with deitlibc; built by default.Gerrit Pape2002-08-282-0/+4
| | | | | | | * doc/usedietlibc.html: fix description. * stage 3: restart getties after stopping services. * getty-*/run: add utmpset. 0.5.0.
* * utmpset.c: new option -w: additionally write wtmp record.Gerrit Pape2002-06-241-1/+1
| | | | 0.4.1.
* * src/: include public domain sources to build byte.a, unix.a, time.a:Gerrit Pape2002-05-191-0/+3
| | | | | | | runit builds without having daemontools' sources installed. * utmpset.c: new utmpset program. * doc/utmpset.html: new. 0.4.0.
* runs on openbsd 2.9.Gerrit Pape2001-12-301-3/+10
|
* runit: checks for pid == 1Gerrit Pape2001-12-221-1/+2
| | | | | | | new: svwaitdown, svwaitup stage3: uses svwaitdown 0.2.2 debian package
* * collects all terminated children in all stagesGerrit Pape2001-11-221-3/+6
| | | | | | | | | * sends sigkill to whole process group if stage2 crashes and waits 5 seconds before restarting * ctraltdel not automatically shuts down, now respects /etc/runit/stopit * /etc/runit/ctrlaltdel touches /etc/runit/stopit * on shutdown request: send sigterm to stage 2, wait max 5 second, send sigkill if still running, leave stage 2, enter stage 3
* getty service directory added.Gerrit Pape2001-11-161-0/+2
|
* Initial revisionGerrit Pape2001-11-164-0/+29