Jon Brinkmann wrote:
"rm /etc/localtime ; ln -s /usr/share/zoneinfo/UTC /etc/localtime".
That has been the wrong way to do it on RH systems for years, it changed on some release of RHL.
/etc/localtime should be a file, not a symlink. 09:46 [EMAIL PROTECTED] ~]$ ls -l /etc/localtime -rw-r--r-- 1 root 440 Jun 15 2007 /etc/localtime 09:51 [EMAIL PROTECTED] ~]$ The correct manual way is to mv -fb /usr/share/zoneinfo/UTC /etc/localtime. That covers the case where localtime is required before /usr is available. It's nothing to do with crond though. -- Cheers John -- spambait [EMAIL PROTECTED] [EMAIL PROTECTED] -- Advice http://webfoot.com/advice/email.top.php http://www.catb.org/~esr/faqs/smart-questions.html http://support.microsoft.com/kb/555375 You cannot reply off-list:-)
