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