├── .github ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── SECURITY.md └── workflows │ ├── build.yml │ ├── coverity.yml │ ├── docs.yml │ ├── release.yml │ └── weekly.yml ├── .gitignore ├── .globalrc ├── LICENSE ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── contrib ├── .gitignore ├── Makefile.am ├── README.md ├── alpine │ ├── Makefile.am │ ├── README.md │ ├── build.sh │ ├── finit.conf │ ├── finit.d │ │ ├── Makefile.am │ │ └── available │ │ │ ├── Makefile.am │ │ │ ├── acpid.conf │ │ │ ├── crond.conf │ │ │ ├── dropbear.conf │ │ │ ├── getty.conf │ │ │ ├── keymap.conf │ │ │ ├── lxdm.conf │ │ │ ├── modules.conf │ │ │ ├── ntpd.conf │ │ │ ├── syslogd.conf │ │ │ └── watchdog.conf │ ├── install.sh │ ├── rc.local │ └── uninstall.sh ├── debian │ ├── Makefile.am │ ├── README.md │ ├── build.sh │ ├── finit.conf │ ├── finit.d │ │ ├── Makefile.am │ │ └── available │ │ │ ├── Makefile.am │ │ │ ├── acpid.conf │ │ │ ├── anacron.conf │ │ │ ├── apparmor.conf │ │ │ ├── avahi-daemon.conf │ │ │ ├── bluetooth.conf │ │ │ ├── console-setup.conf │ │ │ ├── cron.conf │ │ │ ├── elogind.conf │ │ │ ├── getty.conf │ │ │ ├── keyboard-setup.conf │ │ │ ├── lightdm.conf │ │ │ ├── modules.conf │ │ │ ├── plymouth-quit.conf │ │ │ ├── rsyslogd.conf │ │ │ ├── sntpd.conf │ │ │ ├── sshd.conf │ │ │ ├── syslogd.conf │ │ │ └── xdm.conf │ └── install.sh ├── finit.conf ├── fstab.bb ├── initctl ├── patches │ └── linux-4.9-inotify-in-mask-create.patch ├── procmon.sh ├── service └── void │ ├── Makefile.am │ ├── README.md │ ├── build.sh │ ├── finit.conf │ ├── finit.d │ ├── Makefile.am │ └── available │ │ ├── Makefile.am │ │ ├── acpid.conf │ │ ├── crond.conf │ │ ├── dhcpcd.conf │ │ ├── dmeventd.conf │ │ ├── getty.conf │ │ ├── keymap.conf │ │ ├── lxdm.conf │ │ ├── modules.conf │ │ ├── ntpd.conf │ │ ├── sshd.conf │ │ ├── syslog.conf │ │ └── uuidd.conf │ ├── install.sh │ └── rc.local ├── doc ├── .gitignore ├── AUTHORS ├── ChangeLog.md ├── Makefile.am ├── README.md ├── TODO.md ├── build.md ├── cmdline.md ├── commands.md ├── conditions.md ├── config │ ├── Makefile.am │ ├── README.md │ ├── cgroups.md │ ├── env.md │ ├── files.md │ ├── index.md │ ├── limitations.md │ ├── logging.md │ ├── rescue.md │ ├── runlevels.md │ ├── runparts.md │ ├── service-env.md │ ├── service-opts.md │ ├── service-sync.md │ ├── service-wrappers.md │ ├── services.md │ ├── sysv.md │ ├── task-and-run.md │ ├── templating.md │ └── tty.md ├── distro.md ├── example.md ├── extra.css ├── features.md ├── img │ ├── alpine-screenshot.png │ ├── alpine-screenshot2.png │ ├── finit-screenshot.jpg │ ├── finit.jpg │ ├── finit.txt │ ├── finit3-screenshot.png │ ├── finit3.png │ ├── finit4-screenshot.png │ ├── logo.png │ ├── svc-machine.png │ └── svc-machine.svg ├── index.md ├── initctl.md ├── keventd.md ├── plugins.md ├── requirements.md ├── runlevels.md ├── runparts.md ├── service.md ├── signals.md ├── state-machine.md └── watchdog.md ├── libsystemd ├── .gitignore ├── Makefile.am ├── libsystemd.pc.in ├── sd-daemon.c └── sd-daemon.h ├── m4 ├── .gitignore ├── expand.m4 └── plugin.m4 ├── man ├── .gitignore ├── Makefile.am ├── finit.8 ├── finit.conf.5 └── initctl.8 ├── mkdocs.yml ├── plugins ├── .gitignore ├── Makefile.am ├── alsa-utils.c ├── bootmisc.c ├── dbus.c ├── hook-scripts.c ├── modprobe.c ├── modules-load.c ├── netlink.c ├── pidfile.c ├── procps.c ├── resolvconf.c ├── rtc.c ├── sys.c ├── tty.c ├── urandom.c ├── usr.c └── x11-common.c ├── src ├── .gitignore ├── Makefile.am ├── api.c ├── cgroup.c ├── cgroup.h ├── cgutil.c ├── cgutil.h ├── client.c ├── client.h ├── coldplug ├── cond-w.c ├── cond.c ├── cond.h ├── conf.c ├── conf.h ├── devmon.c ├── devmon.h ├── exec.c ├── finit.c ├── finit.h ├── getty.c ├── helpers.c ├── helpers.h ├── initctl.c ├── initctl.h ├── iwatch.c ├── iwatch.h ├── keventd.c ├── log.c ├── log.h ├── logit.c ├── logrotate.c ├── mdadm.c ├── mount.c ├── pid.c ├── pid.h ├── plugin.c ├── plugin.h ├── private.h ├── reboot.c ├── rescue.conf ├── runparts.c ├── sample.conf ├── schedule.c ├── schedule.h ├── serv.c ├── serv.h ├── service.c ├── service.h ├── sig.c ├── sig.h ├── sm.c ├── sm.h ├── stty.c ├── sulogin.c ├── svc.c ├── svc.h ├── tmpfiles.c ├── tty.c ├── tty.h ├── util.c ├── util.h ├── utmp-api.c ├── utmp-api.h ├── watchdog.c └── watchdog.h ├── system ├── .gitignore ├── 10-hotplug.conf.in ├── 90-testserv.conf └── Makefile.am ├── test ├── .gitignore ├── Makefile.am ├── README.md ├── add-remove-dynamic-service-sub-config.sh ├── add-remove-dynamic-service.sh ├── bootstrap-crash.sh ├── check.sh ├── cond-start-task.sh ├── crashing.sh ├── depserv.sh ├── devmon.sh ├── failing-sysv.sh ├── global-envs.sh ├── initctl-status-subset.sh ├── lib │ ├── .gitignore │ ├── Makefile.am │ ├── enter.sh │ ├── exec.sh │ ├── setup.sh │ ├── start.sh │ └── sysroot.mk ├── notify.sh ├── pidfile.sh ├── pre-fail.sh ├── pre-post-serv.sh ├── process-depends.sh ├── rclocal.sh ├── ready-serv.sh ├── restart-self.sh ├── run-restart-forever.sh ├── run-task-tricks.sh ├── runlevel.sh ├── runparts.sh ├── setup-sysroot.sh ├── signal-service.sh ├── skel │ ├── bin │ │ ├── busybox-x86_64.sha256 │ │ ├── crasher.sh │ │ ├── fail.sh │ │ ├── post.sh │ │ ├── pre.sh │ │ ├── ready.sh │ │ └── slay │ ├── cdrom │ │ └── .empty │ ├── dev │ │ ├── pts │ │ │ └── .empty │ │ └── shm │ │ │ └── .empty │ ├── etc │ │ ├── env │ │ ├── finit.d │ │ │ ├── .empty │ │ │ ├── available │ │ │ │ └── .empty │ │ │ └── enabled │ │ │ │ └── .empty │ │ ├── fstab │ │ ├── hostname │ │ ├── init.d │ │ │ ├── S01-service.sh │ │ │ ├── S02-serv.sh │ │ │ ├── rcK │ │ │ └── rcS │ │ ├── inittab │ │ ├── rc.d │ │ │ ├── S01abc.sh │ │ │ ├── S02def.sh │ │ │ ├── foo.sh │ │ │ └── test.sh │ │ └── rcS.d │ │ │ ├── S01abc.sh │ │ │ ├── S02def.sh │ │ │ ├── foo.sh │ │ │ └── test.sh │ ├── home │ │ └── .empty │ ├── proc │ │ └── .empty │ ├── root │ │ └── .empty │ ├── run │ │ └── .empty │ ├── sbin │ │ ├── chrootsetup.sh │ │ ├── fail.sh │ │ ├── service.sh │ │ └── task.sh │ ├── srv │ │ └── .empty │ ├── sys │ │ └── .empty │ ├── tmp │ │ └── .empty │ ├── usr │ │ ├── bin │ │ │ └── .empty │ │ ├── games │ │ │ └── .empty │ │ ├── include │ │ │ └── .empty │ │ ├── lib │ │ │ └── .empty │ │ ├── local │ │ │ ├── bin │ │ │ │ └── .empty │ │ │ ├── etc │ │ │ │ └── .empty │ │ │ ├── games │ │ │ │ └── .empty │ │ │ ├── lib │ │ │ │ └── .empty │ │ │ ├── sbin │ │ │ │ └── .empty │ │ │ ├── share │ │ │ │ └── .empty │ │ │ └── src │ │ │ │ └── .empty │ │ ├── sbin │ │ │ └── .empty │ │ ├── share │ │ │ ├── .empty │ │ │ └── runparts │ │ │ │ ├── ref.log │ │ │ │ └── sysv.log │ │ └── src │ │ │ └── .empty │ └── var │ │ └── .empty ├── src │ ├── .gitignore │ ├── Makefile.am │ └── serv.c ├── start-kill-service.sh ├── start-kill-stop.sh ├── start-stop-serv.sh ├── start-stop-service-sub-config.sh ├── start-stop-service.sh ├── start-stop-sysv.sh ├── svc-env.sh ├── sysvparts.sh ├── test.env.in ├── testserv.sh └── unexpected-restart.sh └── tmpfiles.d ├── .gitignore ├── Makefile.am ├── dnsmasq.conf ├── etc.conf ├── finit.conf ├── frr.conf ├── legacy.conf ├── lldpd.conf ├── openswan.conf ├── quagga.conf ├── sshd.conf ├── testserv.conf ├── uuidd.conf ├── var.conf └── x11.conf /.github/CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/.github/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/coverity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/.github/workflows/coverity.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/weekly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/.github/workflows/weekly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/.gitignore -------------------------------------------------------------------------------- /.globalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/.globalrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf -W portability -vifm 4 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/.gitignore -------------------------------------------------------------------------------- /contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/Makefile.am -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/alpine/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/Makefile.am -------------------------------------------------------------------------------- /contrib/alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/README.md -------------------------------------------------------------------------------- /contrib/alpine/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/build.sh -------------------------------------------------------------------------------- /contrib/alpine/finit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.conf -------------------------------------------------------------------------------- /contrib/alpine/finit.d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/Makefile.am -------------------------------------------------------------------------------- /contrib/alpine/finit.d/available/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/available/Makefile.am -------------------------------------------------------------------------------- /contrib/alpine/finit.d/available/acpid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/available/acpid.conf -------------------------------------------------------------------------------- /contrib/alpine/finit.d/available/crond.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/available/crond.conf -------------------------------------------------------------------------------- /contrib/alpine/finit.d/available/dropbear.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/available/dropbear.conf -------------------------------------------------------------------------------- /contrib/alpine/finit.d/available/getty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/available/getty.conf -------------------------------------------------------------------------------- /contrib/alpine/finit.d/available/keymap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/available/keymap.conf -------------------------------------------------------------------------------- /contrib/alpine/finit.d/available/lxdm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/available/lxdm.conf -------------------------------------------------------------------------------- /contrib/alpine/finit.d/available/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/available/modules.conf -------------------------------------------------------------------------------- /contrib/alpine/finit.d/available/ntpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/available/ntpd.conf -------------------------------------------------------------------------------- /contrib/alpine/finit.d/available/syslogd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/available/syslogd.conf -------------------------------------------------------------------------------- /contrib/alpine/finit.d/available/watchdog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/finit.d/available/watchdog.conf -------------------------------------------------------------------------------- /contrib/alpine/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/install.sh -------------------------------------------------------------------------------- /contrib/alpine/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/rc.local -------------------------------------------------------------------------------- /contrib/alpine/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/alpine/uninstall.sh -------------------------------------------------------------------------------- /contrib/debian/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/Makefile.am -------------------------------------------------------------------------------- /contrib/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/README.md -------------------------------------------------------------------------------- /contrib/debian/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/build.sh -------------------------------------------------------------------------------- /contrib/debian/finit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/Makefile.am -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/Makefile.am -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/acpid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/acpid.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/anacron.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/anacron.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/apparmor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/apparmor.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/avahi-daemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/avahi-daemon.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/bluetooth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/bluetooth.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/console-setup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/console-setup.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/cron.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/cron.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/elogind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/elogind.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/getty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/getty.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/keyboard-setup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/keyboard-setup.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/lightdm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/lightdm.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/modules.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/plymouth-quit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/plymouth-quit.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/rsyslogd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/rsyslogd.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/sntpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/sntpd.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/sshd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/sshd.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/syslogd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/syslogd.conf -------------------------------------------------------------------------------- /contrib/debian/finit.d/available/xdm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/finit.d/available/xdm.conf -------------------------------------------------------------------------------- /contrib/debian/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/debian/install.sh -------------------------------------------------------------------------------- /contrib/finit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/finit.conf -------------------------------------------------------------------------------- /contrib/fstab.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/fstab.bb -------------------------------------------------------------------------------- /contrib/initctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/initctl -------------------------------------------------------------------------------- /contrib/patches/linux-4.9-inotify-in-mask-create.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/patches/linux-4.9-inotify-in-mask-create.patch -------------------------------------------------------------------------------- /contrib/procmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/procmon.sh -------------------------------------------------------------------------------- /contrib/service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/service -------------------------------------------------------------------------------- /contrib/void/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/Makefile.am -------------------------------------------------------------------------------- /contrib/void/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/README.md -------------------------------------------------------------------------------- /contrib/void/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/build.sh -------------------------------------------------------------------------------- /contrib/void/finit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.conf -------------------------------------------------------------------------------- /contrib/void/finit.d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/Makefile.am -------------------------------------------------------------------------------- /contrib/void/finit.d/available/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/Makefile.am -------------------------------------------------------------------------------- /contrib/void/finit.d/available/acpid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/acpid.conf -------------------------------------------------------------------------------- /contrib/void/finit.d/available/crond.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/crond.conf -------------------------------------------------------------------------------- /contrib/void/finit.d/available/dhcpcd.conf: -------------------------------------------------------------------------------- 1 | service [2345] dhcpcd -B -M -- DHCP client 2 | -------------------------------------------------------------------------------- /contrib/void/finit.d/available/dmeventd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/dmeventd.conf -------------------------------------------------------------------------------- /contrib/void/finit.d/available/getty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/getty.conf -------------------------------------------------------------------------------- /contrib/void/finit.d/available/keymap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/keymap.conf -------------------------------------------------------------------------------- /contrib/void/finit.d/available/lxdm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/lxdm.conf -------------------------------------------------------------------------------- /contrib/void/finit.d/available/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/modules.conf -------------------------------------------------------------------------------- /contrib/void/finit.d/available/ntpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/ntpd.conf -------------------------------------------------------------------------------- /contrib/void/finit.d/available/sshd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/sshd.conf -------------------------------------------------------------------------------- /contrib/void/finit.d/available/syslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/syslog.conf -------------------------------------------------------------------------------- /contrib/void/finit.d/available/uuidd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/finit.d/available/uuidd.conf -------------------------------------------------------------------------------- /contrib/void/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/install.sh -------------------------------------------------------------------------------- /contrib/void/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/contrib/void/rc.local -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/AUTHORS -------------------------------------------------------------------------------- /doc/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/ChangeLog.md -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- 1 | index.md -------------------------------------------------------------------------------- /doc/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/TODO.md -------------------------------------------------------------------------------- /doc/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/build.md -------------------------------------------------------------------------------- /doc/cmdline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/cmdline.md -------------------------------------------------------------------------------- /doc/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/commands.md -------------------------------------------------------------------------------- /doc/conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/conditions.md -------------------------------------------------------------------------------- /doc/config/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/Makefile.am -------------------------------------------------------------------------------- /doc/config/README.md: -------------------------------------------------------------------------------- 1 | index.md -------------------------------------------------------------------------------- /doc/config/cgroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/cgroups.md -------------------------------------------------------------------------------- /doc/config/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/env.md -------------------------------------------------------------------------------- /doc/config/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/files.md -------------------------------------------------------------------------------- /doc/config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/index.md -------------------------------------------------------------------------------- /doc/config/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/limitations.md -------------------------------------------------------------------------------- /doc/config/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/logging.md -------------------------------------------------------------------------------- /doc/config/rescue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/rescue.md -------------------------------------------------------------------------------- /doc/config/runlevels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/runlevels.md -------------------------------------------------------------------------------- /doc/config/runparts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/runparts.md -------------------------------------------------------------------------------- /doc/config/service-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/service-env.md -------------------------------------------------------------------------------- /doc/config/service-opts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/service-opts.md -------------------------------------------------------------------------------- /doc/config/service-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/service-sync.md -------------------------------------------------------------------------------- /doc/config/service-wrappers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/service-wrappers.md -------------------------------------------------------------------------------- /doc/config/services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/services.md -------------------------------------------------------------------------------- /doc/config/sysv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/sysv.md -------------------------------------------------------------------------------- /doc/config/task-and-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/task-and-run.md -------------------------------------------------------------------------------- /doc/config/templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/templating.md -------------------------------------------------------------------------------- /doc/config/tty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/config/tty.md -------------------------------------------------------------------------------- /doc/distro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/distro.md -------------------------------------------------------------------------------- /doc/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/example.md -------------------------------------------------------------------------------- /doc/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/extra.css -------------------------------------------------------------------------------- /doc/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/features.md -------------------------------------------------------------------------------- /doc/img/alpine-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/img/alpine-screenshot.png -------------------------------------------------------------------------------- /doc/img/alpine-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/img/alpine-screenshot2.png -------------------------------------------------------------------------------- /doc/img/finit-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/img/finit-screenshot.jpg -------------------------------------------------------------------------------- /doc/img/finit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/img/finit.jpg -------------------------------------------------------------------------------- /doc/img/finit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/img/finit.txt -------------------------------------------------------------------------------- /doc/img/finit3-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/img/finit3-screenshot.png -------------------------------------------------------------------------------- /doc/img/finit3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/img/finit3.png -------------------------------------------------------------------------------- /doc/img/finit4-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/img/finit4-screenshot.png -------------------------------------------------------------------------------- /doc/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/img/logo.png -------------------------------------------------------------------------------- /doc/img/svc-machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/img/svc-machine.png -------------------------------------------------------------------------------- /doc/img/svc-machine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/img/svc-machine.svg -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/initctl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/initctl.md -------------------------------------------------------------------------------- /doc/keventd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/keventd.md -------------------------------------------------------------------------------- /doc/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/plugins.md -------------------------------------------------------------------------------- /doc/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/requirements.md -------------------------------------------------------------------------------- /doc/runlevels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/runlevels.md -------------------------------------------------------------------------------- /doc/runparts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/runparts.md -------------------------------------------------------------------------------- /doc/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/service.md -------------------------------------------------------------------------------- /doc/signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/signals.md -------------------------------------------------------------------------------- /doc/state-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/state-machine.md -------------------------------------------------------------------------------- /doc/watchdog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/doc/watchdog.md -------------------------------------------------------------------------------- /libsystemd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/libsystemd/.gitignore -------------------------------------------------------------------------------- /libsystemd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/libsystemd/Makefile.am -------------------------------------------------------------------------------- /libsystemd/libsystemd.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/libsystemd/libsystemd.pc.in -------------------------------------------------------------------------------- /libsystemd/sd-daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/libsystemd/sd-daemon.c -------------------------------------------------------------------------------- /libsystemd/sd-daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/libsystemd/sd-daemon.h -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- 1 | *.m4 2 | !plugin.m4 -------------------------------------------------------------------------------- /m4/expand.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/m4/expand.m4 -------------------------------------------------------------------------------- /m4/plugin.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/m4/plugin.m4 -------------------------------------------------------------------------------- /man/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/man/.gitignore -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/finit.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/man/finit.8 -------------------------------------------------------------------------------- /man/finit.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/man/finit.conf.5 -------------------------------------------------------------------------------- /man/initctl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/man/initctl.8 -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /plugins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/.gitignore -------------------------------------------------------------------------------- /plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/Makefile.am -------------------------------------------------------------------------------- /plugins/alsa-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/alsa-utils.c -------------------------------------------------------------------------------- /plugins/bootmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/bootmisc.c -------------------------------------------------------------------------------- /plugins/dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/dbus.c -------------------------------------------------------------------------------- /plugins/hook-scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/hook-scripts.c -------------------------------------------------------------------------------- /plugins/modprobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/modprobe.c -------------------------------------------------------------------------------- /plugins/modules-load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/modules-load.c -------------------------------------------------------------------------------- /plugins/netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/netlink.c -------------------------------------------------------------------------------- /plugins/pidfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/pidfile.c -------------------------------------------------------------------------------- /plugins/procps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/procps.c -------------------------------------------------------------------------------- /plugins/resolvconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/resolvconf.c -------------------------------------------------------------------------------- /plugins/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/rtc.c -------------------------------------------------------------------------------- /plugins/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/sys.c -------------------------------------------------------------------------------- /plugins/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/tty.c -------------------------------------------------------------------------------- /plugins/urandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/urandom.c -------------------------------------------------------------------------------- /plugins/usr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/usr.c -------------------------------------------------------------------------------- /plugins/x11-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/plugins/x11-common.c -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/api.c -------------------------------------------------------------------------------- /src/cgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/cgroup.c -------------------------------------------------------------------------------- /src/cgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/cgroup.h -------------------------------------------------------------------------------- /src/cgutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/cgutil.c -------------------------------------------------------------------------------- /src/cgutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/cgutil.h -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/client.c -------------------------------------------------------------------------------- /src/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/client.h -------------------------------------------------------------------------------- /src/coldplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/coldplug -------------------------------------------------------------------------------- /src/cond-w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/cond-w.c -------------------------------------------------------------------------------- /src/cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/cond.c -------------------------------------------------------------------------------- /src/cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/cond.h -------------------------------------------------------------------------------- /src/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/conf.c -------------------------------------------------------------------------------- /src/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/conf.h -------------------------------------------------------------------------------- /src/devmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/devmon.c -------------------------------------------------------------------------------- /src/devmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/devmon.h -------------------------------------------------------------------------------- /src/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/exec.c -------------------------------------------------------------------------------- /src/finit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/finit.c -------------------------------------------------------------------------------- /src/finit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/finit.h -------------------------------------------------------------------------------- /src/getty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/getty.c -------------------------------------------------------------------------------- /src/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/helpers.c -------------------------------------------------------------------------------- /src/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/helpers.h -------------------------------------------------------------------------------- /src/initctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/initctl.c -------------------------------------------------------------------------------- /src/initctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/initctl.h -------------------------------------------------------------------------------- /src/iwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/iwatch.c -------------------------------------------------------------------------------- /src/iwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/iwatch.h -------------------------------------------------------------------------------- /src/keventd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/keventd.c -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/log.c -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/log.h -------------------------------------------------------------------------------- /src/logit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/logit.c -------------------------------------------------------------------------------- /src/logrotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/logrotate.c -------------------------------------------------------------------------------- /src/mdadm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/mdadm.c -------------------------------------------------------------------------------- /src/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/mount.c -------------------------------------------------------------------------------- /src/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/pid.c -------------------------------------------------------------------------------- /src/pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/pid.h -------------------------------------------------------------------------------- /src/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/plugin.c -------------------------------------------------------------------------------- /src/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/plugin.h -------------------------------------------------------------------------------- /src/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/private.h -------------------------------------------------------------------------------- /src/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/reboot.c -------------------------------------------------------------------------------- /src/rescue.conf: -------------------------------------------------------------------------------- 1 | runlevel 1 2 | tty [12345] rescue 3 | -------------------------------------------------------------------------------- /src/runparts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/runparts.c -------------------------------------------------------------------------------- /src/sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/sample.conf -------------------------------------------------------------------------------- /src/schedule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/schedule.c -------------------------------------------------------------------------------- /src/schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/schedule.h -------------------------------------------------------------------------------- /src/serv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/serv.c -------------------------------------------------------------------------------- /src/serv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/serv.h -------------------------------------------------------------------------------- /src/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/service.c -------------------------------------------------------------------------------- /src/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/service.h -------------------------------------------------------------------------------- /src/sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/sig.c -------------------------------------------------------------------------------- /src/sig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/sig.h -------------------------------------------------------------------------------- /src/sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/sm.c -------------------------------------------------------------------------------- /src/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/sm.h -------------------------------------------------------------------------------- /src/stty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/stty.c -------------------------------------------------------------------------------- /src/sulogin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/sulogin.c -------------------------------------------------------------------------------- /src/svc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/svc.c -------------------------------------------------------------------------------- /src/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/svc.h -------------------------------------------------------------------------------- /src/tmpfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/tmpfiles.c -------------------------------------------------------------------------------- /src/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/tty.c -------------------------------------------------------------------------------- /src/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/tty.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/util.h -------------------------------------------------------------------------------- /src/utmp-api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/utmp-api.c -------------------------------------------------------------------------------- /src/utmp-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/utmp-api.h -------------------------------------------------------------------------------- /src/watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/watchdog.c -------------------------------------------------------------------------------- /src/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/src/watchdog.h -------------------------------------------------------------------------------- /system/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/system/.gitignore -------------------------------------------------------------------------------- /system/10-hotplug.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/system/10-hotplug.conf.in -------------------------------------------------------------------------------- /system/90-testserv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/system/90-testserv.conf -------------------------------------------------------------------------------- /system/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/system/Makefile.am -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/README.md -------------------------------------------------------------------------------- /test/add-remove-dynamic-service-sub-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/add-remove-dynamic-service-sub-config.sh -------------------------------------------------------------------------------- /test/add-remove-dynamic-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/add-remove-dynamic-service.sh -------------------------------------------------------------------------------- /test/bootstrap-crash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/bootstrap-crash.sh -------------------------------------------------------------------------------- /test/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/check.sh -------------------------------------------------------------------------------- /test/cond-start-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/cond-start-task.sh -------------------------------------------------------------------------------- /test/crashing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/crashing.sh -------------------------------------------------------------------------------- /test/depserv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/depserv.sh -------------------------------------------------------------------------------- /test/devmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/devmon.sh -------------------------------------------------------------------------------- /test/failing-sysv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/failing-sysv.sh -------------------------------------------------------------------------------- /test/global-envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/global-envs.sh -------------------------------------------------------------------------------- /test/initctl-status-subset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/initctl-status-subset.sh -------------------------------------------------------------------------------- /test/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/lib/.gitignore -------------------------------------------------------------------------------- /test/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/lib/Makefile.am -------------------------------------------------------------------------------- /test/lib/enter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/lib/enter.sh -------------------------------------------------------------------------------- /test/lib/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/lib/exec.sh -------------------------------------------------------------------------------- /test/lib/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/lib/setup.sh -------------------------------------------------------------------------------- /test/lib/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/lib/start.sh -------------------------------------------------------------------------------- /test/lib/sysroot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/lib/sysroot.mk -------------------------------------------------------------------------------- /test/notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/notify.sh -------------------------------------------------------------------------------- /test/pidfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/pidfile.sh -------------------------------------------------------------------------------- /test/pre-fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/pre-fail.sh -------------------------------------------------------------------------------- /test/pre-post-serv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/pre-post-serv.sh -------------------------------------------------------------------------------- /test/process-depends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/process-depends.sh -------------------------------------------------------------------------------- /test/rclocal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/rclocal.sh -------------------------------------------------------------------------------- /test/ready-serv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/ready-serv.sh -------------------------------------------------------------------------------- /test/restart-self.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/restart-self.sh -------------------------------------------------------------------------------- /test/run-restart-forever.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/run-restart-forever.sh -------------------------------------------------------------------------------- /test/run-task-tricks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/run-task-tricks.sh -------------------------------------------------------------------------------- /test/runlevel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/runlevel.sh -------------------------------------------------------------------------------- /test/runparts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/runparts.sh -------------------------------------------------------------------------------- /test/setup-sysroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/setup-sysroot.sh -------------------------------------------------------------------------------- /test/signal-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/signal-service.sh -------------------------------------------------------------------------------- /test/skel/bin/busybox-x86_64.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/bin/busybox-x86_64.sha256 -------------------------------------------------------------------------------- /test/skel/bin/crasher.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | #sleep 2 4 | kill -11 $$ 5 | 6 | exit 1 7 | 8 | -------------------------------------------------------------------------------- /test/skel/bin/fail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sleep 2 4 | exit 42 5 | -------------------------------------------------------------------------------- /test/skel/bin/post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/bin/post.sh -------------------------------------------------------------------------------- /test/skel/bin/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/bin/pre.sh -------------------------------------------------------------------------------- /test/skel/bin/ready.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "READY" > /tmp/ready 4 | -------------------------------------------------------------------------------- /test/skel/bin/slay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/bin/slay -------------------------------------------------------------------------------- /test/skel/cdrom/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/dev/pts/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/dev/shm/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/etc/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/etc/env -------------------------------------------------------------------------------- /test/skel/etc/finit.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/etc/finit.d/available/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/etc/finit.d/enabled/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/etc/fstab -------------------------------------------------------------------------------- /test/skel/etc/hostname: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /test/skel/etc/init.d/S01-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/etc/init.d/S01-service.sh -------------------------------------------------------------------------------- /test/skel/etc/init.d/S02-serv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/etc/init.d/S02-serv.sh -------------------------------------------------------------------------------- /test/skel/etc/init.d/rcK: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Shutting down ..." 4 | exit 0 5 | -------------------------------------------------------------------------------- /test/skel/etc/init.d/rcS: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Starting up ..." 4 | poweroff -d 2 5 | 6 | -------------------------------------------------------------------------------- /test/skel/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/etc/inittab -------------------------------------------------------------------------------- /test/skel/etc/rc.d/S01abc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "$0 $*" >> /tmp/runparts.log 4 | -------------------------------------------------------------------------------- /test/skel/etc/rc.d/S02def.sh: -------------------------------------------------------------------------------- 1 | S01abc.sh -------------------------------------------------------------------------------- /test/skel/etc/rc.d/foo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "$0" >> /tmp/runparts.log 4 | -------------------------------------------------------------------------------- /test/skel/etc/rc.d/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "$0" >> /tmp/runparts.log 4 | -------------------------------------------------------------------------------- /test/skel/etc/rcS.d/S01abc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "$0 $*" >> /tmp/sysv.log 4 | -------------------------------------------------------------------------------- /test/skel/etc/rcS.d/S02def.sh: -------------------------------------------------------------------------------- 1 | S01abc.sh -------------------------------------------------------------------------------- /test/skel/etc/rcS.d/foo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "$0" >> /tmp/sysv.log 4 | -------------------------------------------------------------------------------- /test/skel/etc/rcS.d/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "$0" >> /tmp/sysv.log 4 | -------------------------------------------------------------------------------- /test/skel/home/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/proc/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/root/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/run/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/sbin/chrootsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/sbin/chrootsetup.sh -------------------------------------------------------------------------------- /test/skel/sbin/fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/sbin/fail.sh -------------------------------------------------------------------------------- /test/skel/sbin/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/sbin/service.sh -------------------------------------------------------------------------------- /test/skel/sbin/task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/sbin/task.sh -------------------------------------------------------------------------------- /test/skel/srv/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/sys/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/tmp/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/bin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/games/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/include/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/lib/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/local/bin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/local/etc/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/local/games/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/local/lib/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/local/sbin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/local/share/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/local/src/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/sbin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/share/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/usr/share/runparts/ref.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/usr/share/runparts/ref.log -------------------------------------------------------------------------------- /test/skel/usr/share/runparts/sysv.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/skel/usr/share/runparts/sysv.log -------------------------------------------------------------------------------- /test/skel/usr/src/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/skel/var/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/src/.gitignore -------------------------------------------------------------------------------- /test/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/src/Makefile.am -------------------------------------------------------------------------------- /test/src/serv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/src/serv.c -------------------------------------------------------------------------------- /test/start-kill-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/start-kill-service.sh -------------------------------------------------------------------------------- /test/start-kill-stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/start-kill-stop.sh -------------------------------------------------------------------------------- /test/start-stop-serv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/start-stop-serv.sh -------------------------------------------------------------------------------- /test/start-stop-service-sub-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/start-stop-service-sub-config.sh -------------------------------------------------------------------------------- /test/start-stop-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/start-stop-service.sh -------------------------------------------------------------------------------- /test/start-stop-sysv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/start-stop-sysv.sh -------------------------------------------------------------------------------- /test/svc-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/svc-env.sh -------------------------------------------------------------------------------- /test/sysvparts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/sysvparts.sh -------------------------------------------------------------------------------- /test/test.env.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/test.env.in -------------------------------------------------------------------------------- /test/testserv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/testserv.sh -------------------------------------------------------------------------------- /test/unexpected-restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/test/unexpected-restart.sh -------------------------------------------------------------------------------- /tmpfiles.d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/.gitignore -------------------------------------------------------------------------------- /tmpfiles.d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/Makefile.am -------------------------------------------------------------------------------- /tmpfiles.d/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/dnsmasq.conf -------------------------------------------------------------------------------- /tmpfiles.d/etc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/etc.conf -------------------------------------------------------------------------------- /tmpfiles.d/finit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/finit.conf -------------------------------------------------------------------------------- /tmpfiles.d/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/frr.conf -------------------------------------------------------------------------------- /tmpfiles.d/legacy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/legacy.conf -------------------------------------------------------------------------------- /tmpfiles.d/lldpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/lldpd.conf -------------------------------------------------------------------------------- /tmpfiles.d/openswan.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/openswan.conf -------------------------------------------------------------------------------- /tmpfiles.d/quagga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/quagga.conf -------------------------------------------------------------------------------- /tmpfiles.d/sshd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/sshd.conf -------------------------------------------------------------------------------- /tmpfiles.d/testserv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/testserv.conf -------------------------------------------------------------------------------- /tmpfiles.d/uuidd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/uuidd.conf -------------------------------------------------------------------------------- /tmpfiles.d/var.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/var.conf -------------------------------------------------------------------------------- /tmpfiles.d/x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finit-project/finit/HEAD/tmpfiles.d/x11.conf --------------------------------------------------------------------------------