diff options
author | Kay Sievers <kay@vrfy.org> | 2014-06-24 18:10:30 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2014-06-24 18:12:31 +0200 |
commit | 971ff8c78b3a7d94ed2289077f856c6988d18183 (patch) | |
tree | e573e67b14bcfd30ae37edb7277f5fb82d5f8577 /src/nspawn/nspawn.c | |
parent | 574cc928887851269c5919123dbdf8e1b2713b23 (diff) |
switch-root: create essential base directories at system bootup
This allows us to bootup a rootfs with a /usr directory only.
Diffstat (limited to 'src/nspawn/nspawn.c')
-rw-r--r-- | src/nspawn/nspawn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 501bccae87..0a8dc0cf30 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -3011,7 +3011,7 @@ int main(int argc, char *argv[]) { r = base_filesystem_create(arg_directory); if (r < 0) { - log_error("creating base filesystem failed: %s", strerror(-r)); + log_error("Failed to create the base filesystem: %s", strerror(-r)); goto child_fail; } |