summaryrefslogtreecommitdiffstats
path: root/src/oom/meson.build (follow)
Commit message (Collapse)AuthorAgeFilesLines
* meson: enable several tests even if the relevant features are disabledYu Watanabe2021-01-181-6/+6
|
* meson: make the second and third elements of tests or fuzzers optionalYu Watanabe2021-01-181-3/+1
| | | | Then, we can shorten many test definitions.
* Add install-sysconfdir=no-samples option for (non-)installation of sample ↵Josh Triplett2021-01-141-1/+1
| | | | | | | | | | | | | configs By default, systemd installs various sample configuration files containing commented-out defaults. Systems seeking to minimize the number of files in /etc may wish to install directories and configuration files that have semantic effects, but not install not commented-out sample configuration files. Turn install-sysconfdir into a multi-valued option, with a "no-samples" value to skip installing sample-only configuration files.
* oom: fix oomd.conf install locationChristian Hesse2020-11-271-1/+1
| | | | The file is read in pkgsysconfdir, so install it there.
* meson: add option to skip installing to $sysconfdirJörg Thalheim2020-11-121-2/+4
| | | | | | | | | | | | | | | | | | | | | This is useful for development where overwriting files out side the configured prefix will affect the host as well as stateless systems such as NixOS that don't let packages install to /etc but handle configuration on their own. Alternative to https://github.com/systemd/systemd/pull/17501 tested with: $ mkdir inst build && cd build $ meson \ -Dcreate-log-dirs=false \ -Dsysvrcnd-path=$(realpath ../inst)/etc/rc.d \ -Dsysvinit-path=$(realpath ../inst)/etc/init.d \ -Drootprefix=$(realpath ../inst) \ -Dinstall-sysconfdir=false \ --prefix=$(realpath ../inst) .. $ ninja install
* license: LGPL-2.1+ -> LGPL-2.1-or-laterYu Watanabe2020-11-091-1/+1
|
* systemd-oomd: service filesAnita Zhang2020-10-081-0/+3
|
* systemd-oomd: dbus hook ups and oomctl CLIAnita Zhang2020-10-081-0/+9
|
* systemd-oomd: manager/daemonAnita Zhang2020-10-081-0/+6
|
* systemd-oomd: unit testable helper functionsAnita Zhang2020-10-081-0/+16
Helpers used by the systemd-oomd daemon to read/fill in various contexts and make detection and kill decisions. i.e. a simplified/less configurable version of https://github.com/facebookincubator/oomd/tree/master/src/oomd.