diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-01-22 03:57:15 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-01-22 04:02:07 +0100 |
commit | 3d7415f43f0fe6a821d7bc4a341ba371e8a30ef3 (patch) | |
tree | d79e54dec69645a894a4ec12d6abf765515d245f /src/import/import-dkr.h | |
parent | f4c135bf2f0abcf79c89efbeae51f03bacba5f2f (diff) |
import: introduce new mini-daemon systemd-importd, and make machinectl a client to it
The old "systemd-import" binary is now an internal tool. We still use it
as asynchronous backend for systemd-importd. Since the import tool might
require some IO and CPU resources (due to qcow2 explosion, and
decompression), and because we might want to run it with more minimal
priviliges we still keep it around as the worker binary to execute as
child process of importd.
machinectl now has verbs for pulling down images, cancelling them and
listing them.
Diffstat (limited to 'src/import/import-dkr.h')
-rw-r--r-- | src/import/import-dkr.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/import/import-dkr.h b/src/import/import-dkr.h index b56d83f38f..51aacbe90b 100644 --- a/src/import/import-dkr.h +++ b/src/import/import-dkr.h @@ -32,7 +32,3 @@ DkrImport* dkr_import_unref(DkrImport *import); DEFINE_TRIVIAL_CLEANUP_FUNC(DkrImport*, dkr_import_unref); int dkr_import_pull(DkrImport *import, const char *name, const char *tag, const char *local, bool force_local); - -bool dkr_name_is_valid(const char *name); -bool dkr_id_is_valid(const char *id); -#define dkr_tag_is_valid(tag) filename_is_valid(tag) |