I have a 2 bots. I need to set CET (gmt-1) timezone to first of them, and GMT+0 to anther one.
I have setted up a tzconfig ( sudo dpkg-reconfigure tzdata) to GMT-1, and it works well in console:
But bot still use UTC =([user@ip-10-10-10-10 ~]$ date
Tue Jan 25 13:33:57 GMT-1 2011
[bitnami@ip-10-10-10-10 ~]$ date -u
Tue Jan 25 12:33:59 UTC 2011
My eggdrop.conf:
I have tried to change offset to another values, but it doesnt take effect at all (unlike my bots at Debian Linux)! Even if i change timezone or comment out env(TZ), bot still has UTC timezone.set timezone "GMT"
set offset "-1"
set env(TZ) "$timezone $offset"
How can i fix it?