execute: the runtime directory can only be on tmpfs, hence don't use rm_rf_dangerous() needlessly

This commit is contained in:
Lennart Poettering 2014-12-19 01:31:27 +01:00
parent b7d1319393
commit 24167f3db8

View file

@ -1984,7 +1984,7 @@ int exec_context_destroy_runtime_directory(ExecContext *c, const char *runtime_p
/* We execute this synchronously, since we need to be
* sure this is gone when we start the service
* next. */
rm_rf_dangerous(p, false, true, false);
rm_rf(p, false, true, false);
}
return 0;