[go-nuts] Re: Running a Go server in a chroot

2017-10-24 Thread Juliusz Chroboczek
> you need /usr/local/go/lib/time/zoneinfo.zip. time.LoadLocation is using > it. Also /usr/local/go/lib/time/ has a script to refresh timezones. It turns out that copying /etc/localtime into the chroot was enough. Thanks to the person who helped me by private mail (he'll know who he is). -- Juli

[go-nuts] Re: Running a Go server in a chroot

2017-10-23 Thread Serge Voilokov
you need /usr/local/go/lib/time/zoneinfo.zip. time.LoadLocation is using it. Also /usr/local/go/lib/time/ has a script to refresh timezones. On Monday, October 23, 2017 at 6:11:15 AM UTC-4, Juliusz Chroboczek wrote: > > Hi, > > I'm running a statically linked (CGO_ENABLED=0) Go network server in

[go-nuts] Re: Running a Go server in a chroot

2017-10-23 Thread paul . totterman
> > I'm running a statically linked (CGO_ENABLED=0) Go network server in > a chroot under Linux. The chroot is completely empty (except for the > server's data files), yet, to my surprise, the only issue I'm seeing is > that the timezone is wrong. > 1. Which file(s) do I copy into the chroo