diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-01-29 03:18:09 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-01-29 03:18:09 +0100 |
commit | f50e0a012340fa8dfe6ec7f0cd869f5f3a052d7a (patch) | |
tree | 79ef58ce7acbc8dffcb0af8284a0f4e5922bbe88 /main.c | |
parent | b08d03ffe58332f590aae5c78a85e4fc0b8588ce (diff) |
implement coldpluggin
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -21,7 +21,12 @@ int main(int argc, char *argv[]) { goto finish; } - if ((r = manager_load_unit(m, "default.target", &target)) < 0) { + if ((r = manager_coldplug(m)) < 0) { + log_error("Failed to retrieve coldplug information: %s", strerror(-r)); + goto finish; + } + + if ((r = manager_load_unit(m, SPECIAL_DEFAULT_TARGET, &target)) < 0) { log_error("Failed to load default target: %s", strerror(-r)); goto finish; } @@ -37,10 +42,10 @@ int main(int argc, char *argv[]) { printf("→ By jobs:\n"); manager_dump_jobs(m, stdout, "\t"); - if ((r = manager_loop(m)) < 0) { - log_error("Failed to run mainloop: %s", strerror(-r)); - goto finish; - } + /* if ((r = manager_loop(m)) < 0) { */ + /* log_error("Failed to run mainloop: %s", strerror(-r)); */ + /* goto finish; */ + /* } */ retval = 0; |