From: "Fabian Grünbichler" <f.gruenbichler@proxmox.com>
To: pve-devel@lists.proxmox.com, Stefan Mayr <stefan@mayr-stefan.de>
Subject: Re: [pve-devel] [PATCH manager 1/1] Fix #7175: use timedatectl for timezone handling
Date: Thu, 15 Jan 2026 11:25:55 +0100 [thread overview]
Message-ID: <1768472515.4zjpkx0rr9.astroid@yuna.none> (raw)
In-Reply-To: <20251225080524.1959-3-stefan@mayr-stefan.de>
On December 25, 2025 9:05 am, Stefan Mayr wrote:
> Suggested-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
> Signed-off-by: Stefan Mayr <stefan@mayr-stefan.de>
> ---
> PVE/API2/Nodes.pm | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/PVE/API2/Nodes.pm b/PVE/API2/Nodes.pm
> index 6a6465b6..54ed712e 100644
> --- a/PVE/API2/Nodes.pm
> +++ b/PVE/API2/Nodes.pm
> @@ -1582,10 +1582,15 @@ __PACKAGE__->register_method({
> code => sub {
> my ($param) = @_;
>
> + my $timezone;
> my $ctime = time();
> my $ltime = timegm_nocheck(localtime($ctime));
> + PVE::Tools::run_command(
> + ['timedatectl', 'show', '--property=Timezone', '--value'],
> + outfunc => sub { $timezone //= shift },
> + );
> my $res = {
> - timezone => PVE::INotify::read_file('timezone'),
> + timezone => $timezone,
> time => $ctime,
> localtime => $ltime,
> };
> @@ -1619,7 +1624,7 @@ __PACKAGE__->register_method({
> code => sub {
> my ($param) = @_;
>
> - PVE::INotify::write_file('timezone', $param->{timezone});
> + PVE::Tools::run_command(['timedatectl', 'set-timezone', $param->{timezone}]);
should we restrict this parameter? AFAICT, only [a-zA-Z][a-zA-Z/_\-]*
are currently valid in timezone values?
alternatively we could query the valid names first (list-timezones) and
then check that the passed value is contained in that set..
>
> return;
> },
> --
> 2.34.1
>
>
>
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
prev parent reply other threads:[~2026-01-15 10:26 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-25 8:05 [pve-devel] [PATCH manager/common 0/1] Fix #7175: switch API to timedatectl Stefan Mayr
2025-12-25 8:05 ` [pve-devel] [PATCH common 1/1] Fix #7175: remove deprecated timezone file Stefan Mayr
2025-12-29 12:03 ` Maximiliano Sandoval
2026-01-15 10:26 ` Fabian Grünbichler
2025-12-25 8:05 ` [pve-devel] [PATCH manager 1/1] Fix #7175: use timedatectl for timezone handling Stefan Mayr
2026-01-15 10:25 ` Fabian Grünbichler [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1768472515.4zjpkx0rr9.astroid@yuna.none \
--to=f.gruenbichler@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
--cc=stefan@mayr-stefan.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox