Comment 1 for bug 1660392

Revision history for this message
Matthew Braun (powerplug) wrote :

Also related to the above bug is this code for LTSP clients (pkg ltsp-client-core) which also blindly copies to /etc/localtime:

/usr/share/ltsp/init-ltsp.d/50-set-time

if [ -n "$TIMEZONE" ] && [ -e "/usr/share/zoneinfo/$TIMEZONE" ]; then
    cp /usr/share/zoneinfo/$TIMEZONE /etc/localtime 2>/dev/null
fi

I think both the LTSP build and client code should be changed to create a symlink (after first checking it isn't already a symlink pointing to the correct file).