1234567891011121314151617 |
- <?php
- $command = "0 * * * * echo \\\"\\\" > /var/log/nginx/access.log";
- $output = "grep -qxF \"$command\" /etc/crontabs/root || echo \"$command\" >> /etc/crontabs/root";
- exec($output)."\n";
- $command = "30 0 * * * /etc/init.d/php7-fpm restart";
- $output = "grep -qxF \"$command\" /etc/crontabs/root || echo \"$command\" >> /etc/crontabs/root";
- exec($output)."\n";
- exec("/etc/init.d/cron restart");
|