mirror of
https://github.com/systemd/systemd.git
synced 2024-11-08 11:27:32 +03:00
firstboot: allow a trailing dot on fqdn
This commit is contained in:
parent
8fb4944358
commit
34ad609010
@ -386,12 +386,13 @@ static int prompt_hostname(void) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!hostname_is_valid(h, false)) {
|
if (!hostname_is_valid(h, true)) {
|
||||||
log_error("Specified hostname invalid.");
|
log_error("Specified hostname invalid.");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
arg_hostname = h;
|
/* Get rid of the trailing dot that we allow, but don't want to see */
|
||||||
|
arg_hostname = hostname_cleanup(h, false);
|
||||||
h = NULL;
|
h = NULL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -780,11 +781,12 @@ static int parse_argv(int argc, char *argv[]) {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case ARG_HOSTNAME:
|
case ARG_HOSTNAME:
|
||||||
if (!hostname_is_valid(optarg, false)) {
|
if (!hostname_is_valid(optarg, true)) {
|
||||||
log_error("Host name %s is not valid.", optarg);
|
log_error("Host name %s is not valid.", optarg);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hostname_cleanup(optarg, false);
|
||||||
if (free_and_strdup(&arg_hostname, optarg) < 0)
|
if (free_and_strdup(&arg_hostname, optarg) < 0)
|
||||||
return log_oom();
|
return log_oom();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user