summaryrefslogtreecommitdiffstats
path: root/src/home/homed.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* homed: hook up memory pressure/SIGRTMIN+18 handlingLennart Poettering2023-03-011-1/+1
|
* tree-wide: mark set-but-not-used variables as unused to make LLVM happyFrantisek Sumsal2021-09-151-1/+1
| | | | | | | | | | | | | | LLVM 13 introduced `-Wunused-but-set-variable` diagnostic flag, which trips over some intentionally set-but-not-used variables or variables attached to cleanup handlers with side effects (`_cleanup_umask_`, `_cleanup_(notify_on_cleanup)`, `_cleanup_(restore_sigsetp)`, etc.): ``` ../src/basic/process-util.c:1257:46: error: variable 'saved_ssp' set but not used [-Werror,-Wunused-but-set-variable] _cleanup_(restore_sigsetp) sigset_t *saved_ssp = NULL; ^ 1 error generated. ```
* tree-wide: enable colorized logging for daemons when run in consoleYu Watanabe2021-01-311-1/+1
| | | | It may be useful when debugging daemons.
* license: LGPL-2.1+ -> LGPL-2.1-or-laterYu Watanabe2020-11-091-1/+1
|
* homed: make it easier to run multiple instances of homedLennart Poettering2020-09-181-3/+0
| | | | | | | | | When debugging homed while being logged into a user account manged by homed it is a good idea to be able to run a second copy of homed. In order to not collide with its AF_UNIX socket and bus name use, let's add a new env var $SYSTEMD_HOME_DEBUG_SUFFIX, when set the busnames/socket names are suffixed by it. When setting this while debugging one can invoke an additional copy without interfering with the host one.
* various daemons: emit Stopping... notification before destructing the ↵Zbigniew Jędrzejewski-Szmek2020-07-021-1/+1
| | | | | | | | manager object This is mostly cosmetic, but let's reorder the destructors so that we do the final sd_notify() call before we run the destructor for the manager object.
* homed: convert to the new scheme and add --bus-introspectZbigniew Jędrzejewski-Szmek2020-05-061-3/+11
|
* home: add new systemd-homed service that can manage LUKS homesLennart Poettering2020-01-281-0/+46
Fixes more or less: https://bugs.freedesktop.org/show_bug.cgi?id=67474