You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
596 B
16 lines
596 B
9 years ago
|
#!/bin/sh
|
||
|
#sudo su -
|
||
|
# NOTE: this works only since user is a field on Ubuntu (on some GNU/Linux systems it is not, which is implied by omission at http://www.adminschoice.com/crontab-quick-reference)
|
||
|
# Minute, Hour, Day of Month, Month (1 to 12), Day of Week
|
||
|
# m h dom mon dow user command
|
||
|
|
||
|
cd ~
|
||
|
MT_CHUNKYMAP_CRON_TMP=mts_cron.tmp
|
||
|
if [ ! -f "crontab.1st" ];
|
||
|
then
|
||
|
cp /etc/crontab "crontab.1st"
|
||
|
fi
|
||
|
crontab -l > "$MT_CHUNKYMAP_CRON_TMP"
|
||
|
echo "* * * * * root /home/owner/minetest/util/chunkymap-players-cronjob" >> "$MT_CHUNKYMAP_CRON_TMP"
|
||
|
crontab "$MT_CHUNKYMAP_CRON_TMP"
|
||
|
rm "$MT_CHUNKYMAP_CRON_TMP"
|