├── .dir-locals.el ├── .gitignore ├── INSTALL ├── LICENSE ├── Makefile.am ├── README.md ├── configure.ac ├── doc └── oci-systemd-hook.1.md ├── oci-systemd-hook.json ├── oci-systemd-hook.spec └── src └── systemdhook.c /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/oci-systemd-hook/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/oci-systemd-hook/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/oci-systemd-hook/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/oci-systemd-hook/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/oci-systemd-hook/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/oci-systemd-hook/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/oci-systemd-hook/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/oci-systemd-hook.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/oci-systemd-hook/HEAD/doc/oci-systemd-hook.1.md -------------------------------------------------------------------------------- /oci-systemd-hook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/oci-systemd-hook/HEAD/oci-systemd-hook.json -------------------------------------------------------------------------------- /oci-systemd-hook.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/oci-systemd-hook/HEAD/oci-systemd-hook.spec -------------------------------------------------------------------------------- /src/systemdhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/oci-systemd-hook/HEAD/src/systemdhook.c --------------------------------------------------------------------------------