1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-28 11:55:23 +03:00

update TODO

This commit is contained in:
Lennart Poettering 2012-06-20 14:31:00 +02:00
parent 24f3a374b9
commit d139b24a80
2 changed files with 5 additions and 0 deletions

3
TODO
View File

@ -27,6 +27,9 @@ Bugfixes:
Features: Features:
* change $NOTIFY_SOCKET to use an abstract namespace socket, so that chroot() is compatible with this
https://bugzilla.redhat.com/show_bug.cgi?id=833105
* readahead: merge the three tools into one binary * readahead: merge the three tools into one binary
* systemctl: when stopping a service which has triggres and warning about it actually check the TriggeredBy= deps fields * systemctl: when stopping a service which has triggres and warning about it actually check the TriggeredBy= deps fields

View File

@ -843,6 +843,8 @@ static int remove_item_instance(Item *i, const char *instance) {
case TRUNCATE_DIRECTORY: case TRUNCATE_DIRECTORY:
case RECURSIVE_REMOVE_PATH: case RECURSIVE_REMOVE_PATH:
/* FIXME: we probably should use dir_cleanup() here
* instead of rm_rf() so that 'x' is honoured. */
r = rm_rf(instance, false, i->type == RECURSIVE_REMOVE_PATH, false); r = rm_rf(instance, false, i->type == RECURSIVE_REMOVE_PATH, false);
if (r < 0 && r != -ENOENT) { if (r < 0 && r != -ENOENT) {
log_error("rm_rf(%s): %s", instance, strerror(-r)); log_error("rm_rf(%s): %s", instance, strerror(-r));