#!/bin/sh
# Disallow winter time for Moscow
echo "Disable winter time for MoscoW"
sleep 3
mkdir ./temp1
cd ./temp1
wget tx-us.lunar-linux.org/lunar/mirrors/tzdata2011k.tar.gz
tar xzf tzdata2011k.tar.gz
cp /etc/localtime /tmp/localtime.old
zic europe
ln -sf /usr/share/zoneinfo/Europe/Moscow /etc/localtime
cd ..
rm -rf ./temp1
$e = "/usr/bin/nohup /home/work/some_script.sh > /dev/null 2>&1 &";
shell_exec("$e");