gitextract_nrp8io5d/ ├── .gitignore ├── COPYING ├── COPYRIGHT ├── Makefile ├── README ├── contrib/ │ ├── alexander.viro │ ├── migrate-svn-git │ ├── notify-pam-dead.patch │ ├── sysd2v.sh │ └── zefram-patches ├── doc/ │ ├── Changelog │ ├── Install │ ├── Propaganda │ ├── bootlogd.README │ ├── initctl │ └── initscript.sample ├── man/ │ ├── Makefile │ ├── bootlogd.8 │ ├── fstab-decode.8 │ ├── halt.8 │ ├── init.8 │ ├── initctl.5 │ ├── initscript.5 │ ├── inittab.5 │ ├── killall5.8 │ ├── last.1 │ ├── lastb.1 │ ├── logsave.8 │ ├── mesg.1 │ ├── mountpoint.1 │ ├── pidof.8 │ ├── po/ │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── id.po │ │ ├── pl.po │ │ ├── po4a.cfg │ │ ├── pt.po │ │ └── sysvinit-man.pot │ ├── poweroff.8 │ ├── readbootlog.1 │ ├── reboot.8 │ ├── runlevel.8 │ ├── shutdown.8 │ ├── sulogin.8 │ ├── telinit.8 │ ├── utmpdump.1 │ └── wall.1 └── src/ ├── .gitignore ├── Makefile ├── bootlogd.c ├── bootlogd.h ├── consoles.c ├── consoles.h ├── dowall.c ├── fstab-decode.c ├── halt.c ├── hddown.c ├── ifdown.c ├── init.c ├── init.h ├── initreq.h ├── killall5.c ├── last.c ├── logsave.c ├── mesg.c ├── mountpoint.c ├── oldutmp.h ├── paths.h ├── readbootlog.c ├── reboot.h ├── runlevel.c ├── runlevellog.c ├── runlevellog.h ├── set.h ├── shutdown.c ├── sulogin.c ├── utmp.c ├── utmpdump.c └── wall.c