From 6ce785c50bfacf4fc8f7529e1bf6e2966dc5fac1 Mon Sep 17 00:00:00 2001 From: Jose Luis Duran Date: Sat, 19 Jun 2021 23:22:48 -0300 Subject: [PATCH] bsdinstall: Also copy /var/db/zoneinfo Per tzsetup(8), /etc/localtime and /var/db/zoneinfo go hand in hand. Reviewed by: imp@ Pull Request: https://github.com/freebsd/freebsd-src/pull/486 --- usr.sbin/bsdinstall/scripts/jail | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.sbin/bsdinstall/scripts/jail b/usr.sbin/bsdinstall/scripts/jail index d9b5c8eb3cb..3110f744207 100755 --- a/usr.sbin/bsdinstall/scripts/jail +++ b/usr.sbin/bsdinstall/scripts/jail @@ -137,6 +137,7 @@ trap error SIGINT # SIGINT is bad again bsdinstall config || error "Failed to save config" cp /etc/resolv.conf $1/etc cp /etc/localtime $1/etc +cp /var/db/zoneinfo $1/var/db # Run post-install script if [ -f $TMPDIR/bsdinstall-installscript-ab ]; then