mirror of
https://github.com/systemd/systemd.git
synced 2026-08-03 14:40:31 +00:00
core: do not use quotes around virt and arch
Quotes are useful when the string can contain spaces or be otherwise confusing. Not possible with those two.
This commit is contained in:
@@ -1532,11 +1532,11 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
detect_virtualization(&virtualization);
|
||||
if (virtualization)
|
||||
log_info("Detected virtualization '%s'.", virtualization);
|
||||
log_info("Detected virtualization %s.", virtualization);
|
||||
|
||||
write_container_id();
|
||||
|
||||
log_info("Detected architecture '%s'.", architecture_to_string(uname_architecture()));
|
||||
log_info("Detected architecture %s.", architecture_to_string(uname_architecture()));
|
||||
|
||||
if (in_initrd())
|
||||
log_info("Running in initial RAM disk.");
|
||||
|
||||
Reference in New Issue
Block a user