[systemd-devel] [PATCH 3/3] hostnamectl: read pretty_name and cpe_name from remote

Lennart Poettering lennart at poettering.net
Mon Mar 10 21:01:33 PDT 2014


On Tue, 04.03.14 23:01, Djalal Harouni (tixxdz at opendz.org) wrote:

The other two patches look fine (well, this one needs updating, if the
prop names change as proposed in the other mail...)

Please rebase, and repost, will merge then!

Thanks a lot!

> ---
>  src/hostname/hostnamectl.c | 22 ++++++++++------------
>  1 file changed, 10 insertions(+), 12 deletions(-)
> 
> diff --git a/src/hostname/hostnamectl.c b/src/hostname/hostnamectl.c
> index 94b4243..ad359d6 100644
> --- a/src/hostname/hostnamectl.c
> +++ b/src/hostname/hostnamectl.c
> @@ -67,6 +67,8 @@ typedef struct StatusInfo {
>          char *pretty_hostname;
>          char *icon_name;
>          char *chassis;
> +        char *pretty_name;
> +        char *cpe_name;
>          char *virtualization;
>          char *architecture;
>  } StatusInfo;
> @@ -74,7 +76,6 @@ typedef struct StatusInfo {
>  static void print_status_info(StatusInfo *i) {
>          sd_id128_t mid = {}, bid = {};
>          int r;
> -        _cleanup_free_ char *pretty_name = NULL, *cpe_name = NULL;
>          struct utsname u;
>  
>          assert(i);
> @@ -105,18 +106,11 @@ static void print_status_info(StatusInfo *i) {
>          if (!isempty(i->virtualization))
>                  printf("    Virtualization: %s\n", i->virtualization);
>  
> -        r = parse_env_file("/etc/os-release", NEWLINE,
> -                           "PRETTY_NAME", &pretty_name,
> -                           "CPE_NAME", &cpe_name,
> -                           NULL);
> -        if (r < 0)
> -                log_warning("Failed to read /etc/os-release: %s", strerror(-r));
> -
> -        if (!isempty(pretty_name))
> -                printf("  Operating System: %s\n", pretty_name);
> +        if (!isempty(i->pretty_name))
> +                printf("  Operating System: %s\n", i->pretty_name);
>  
> -        if (!isempty(cpe_name))
> -                printf("       CPE OS Name: %s\n", cpe_name);
> +        if (!isempty(i->cpe_name))
> +                printf("       CPE OS Name: %s\n", i->cpe_name);
>  
>          assert_se(uname(&u) >= 0);
>          printf("            Kernel: %s %s\n", u.sysname, u.release);
> @@ -162,6 +156,8 @@ static int show_all_names(sd_bus *bus) {
>                  { "PrettyHostname", "s", NULL, offsetof(StatusInfo, pretty_hostname) },
>                  { "IconName",       "s", NULL, offsetof(StatusInfo, icon_name) },
>                  { "Chassis",        "s", NULL, offsetof(StatusInfo, chassis) },
> +                { "PrettyName",     "s", NULL, offsetof(StatusInfo, pretty_name) },
> +                { "CpeName",        "s", NULL, offsetof(StatusInfo, cpe_name) },
>                  {}
>          };
>  
> @@ -195,6 +191,8 @@ fail:
>          free(info.pretty_hostname);
>          free(info.icon_name);
>          free(info.chassis);
> +        free(info.pretty_name);
> +        free(info.cpe_name);
>          free(info.virtualization);
>          free(info.architecture);
>  


Lennart

-- 
Lennart Poettering, Red Hat


More information about the systemd-devel mailing list