diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-09-07 14:39:31 +0200 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-09-07 14:48:09 +0200 |
commit | d1edbfd18e71b6ec2c5d705525b4bf9bd93c001b (patch) | |
tree | bffd039cc6931a1846f2f7aa959fffaec1f4cde4 /src | |
parent | 435af27787160079cc4074c1257ba7191bc60380 (diff) | |
download | vyos-1x-d1edbfd18e71b6ec2c5d705525b4bf9bd93c001b.tar.gz vyos-1x-d1edbfd18e71b6ec2c5d705525b4bf9bd93c001b.zip |
system: T5555: Fix time-zone migrator changing valid time-zones to UTC
Diffstat (limited to 'src')
-rwxr-xr-x | src/migration-scripts/system/13-to-14 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/migration-scripts/system/13-to-14 b/src/migration-scripts/system/13-to-14 index 1fa781869..5b781158b 100755 --- a/src/migration-scripts/system/13-to-14 +++ b/src/migration-scripts/system/13-to-14 @@ -34,7 +34,7 @@ else: # retrieve all valid timezones try: - tz_datas = cmd('find /usr/share/zoneinfo/posix -type f -or -type l | sed -e s:/usr/share/zoneinfo/posix/::') + tz_datas = cmd('timedatectl list-timezones') except OSError: tz_datas = '' tz_data = tz_datas.split('\n') |