mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-03-10 00:58:20 +03:00
Merge pull request #3094 from poettering/run-slice
systemd-run: fix --slice= in conjunction with --scope
This commit is contained in:
commit
86ec5e5e29
@ -1242,7 +1242,10 @@ static int bus_unit_set_transient_property(
|
||||
if (!unit_name_is_valid(s, UNIT_NAME_PLAIN))
|
||||
return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid unit name '%s'", s);
|
||||
|
||||
r = manager_load_unit(u->manager, s, NULL, error, &slice);
|
||||
/* Note that we do not dispatch the load queue here yet, as we don't want our own transient unit to be
|
||||
* loaded while we are still setting it up. Or in other words, we use manager_load_unit_prepare()
|
||||
* instead of manager_load_unit() on purpose, here. */
|
||||
r = manager_load_unit_prepare(u->manager, s, NULL, error, &slice);
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
|
@ -2449,8 +2449,8 @@ static int help(int argc, char *argv[], void *userdata) {
|
||||
" rename NAME NAME Rename an image\n"
|
||||
" read-only NAME [BOOL] Mark or unmark image read-only\n"
|
||||
" remove NAME... Remove an image\n"
|
||||
" set-limit [NAME] BYTES Set image or pool size limit (disk quota)\n\n"
|
||||
" clean Remove hidden (or all) images\n"
|
||||
" set-limit [NAME] BYTES Set image or pool size limit (disk quota)\n"
|
||||
" clean Remove hidden (or all) images\n\n"
|
||||
"Image Transfer Commands:\n"
|
||||
" pull-tar URL [NAME] Download a TAR container image\n"
|
||||
" pull-raw URL [NAME] Download a RAW container or VM image\n"
|
||||
|
@ -621,6 +621,10 @@ static int transient_scope_set_properties(sd_bus_message *m) {
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
r = transient_cgroup_set_properties(m);
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
r = sd_bus_message_append(m, "(sv)", "PIDs", "au", 1, (uint32_t) getpid());
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
Loading…
x
Reference in New Issue
Block a user