2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2020-08-05 21:24:48 +02:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2022-01-13 23:15:25 +01:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
#include <LibMain/Main.h>
|
2021-04-25 21:05:02 +02:00
|
|
|
#include <limits.h>
|
2019-06-07 11:49:31 +02:00
|
|
|
#include <stdio.h>
|
2018-11-09 10:18:04 +01:00
|
|
|
#include <string.h>
|
2019-06-07 11:49:31 +02:00
|
|
|
#include <unistd.h>
|
2018-10-26 09:54:29 +02:00
|
|
|
|
2022-01-13 23:15:25 +01:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments args)
|
2018-10-26 09:54:29 +02:00
|
|
|
{
|
2022-07-11 20:42:03 +00:00
|
|
|
StringView hostname {};
|
2020-04-26 15:59:47 +10:00
|
|
|
|
2020-08-05 21:24:48 +02:00
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
args_parser.add_positional_argument(hostname, "Hostname to set", "hostname", Core::ArgsParser::Required::No);
|
2022-01-13 23:15:25 +01:00
|
|
|
args_parser.parse(args);
|
2020-08-05 21:24:48 +02:00
|
|
|
|
2022-07-11 20:42:03 +00:00
|
|
|
if (hostname.is_empty()) {
|
2022-01-13 23:15:25 +01:00
|
|
|
outln("{}", TRY(Core::System::gethostname()));
|
2020-08-05 21:24:48 +02:00
|
|
|
} else {
|
2022-07-11 20:42:03 +00:00
|
|
|
if (hostname.length() >= HOST_NAME_MAX) {
|
2021-05-31 15:43:25 +01:00
|
|
|
warnln("Hostname must be less than {} characters", HOST_NAME_MAX);
|
2020-08-05 21:24:48 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2022-01-13 23:15:25 +01:00
|
|
|
TRY(Core::System::sethostname(hostname));
|
2020-08-05 21:24:48 +02:00
|
|
|
}
|
2018-10-26 09:54:29 +02:00
|
|
|
return 0;
|
|
|
|
}
|