23 lines
359 B
Bash
23 lines
359 B
Bash
|
#!/usr/bin/zsh
|
||
|
|
||
|
|
||
|
# congig
|
||
|
mkdir -p '/home/scripts/'
|
||
|
cp `pwd`/@reboot.sh '/home/scripts/sendmail.sh'
|
||
|
|
||
|
# on reboot
|
||
|
echo "`crontab -l`
|
||
|
@reboot /home/scripts/sendmail.sh" \
|
||
|
| crontab -
|
||
|
|
||
|
|
||
|
# make sure it can create temporarary lock files
|
||
|
sudo chmod -R a-x /var/spool/
|
||
|
sudo mkdir /tmp
|
||
|
sudo chmod 0777 /tmp
|
||
|
sudo chmod +t /tmp
|
||
|
|
||
|
|
||
|
# test now
|
||
|
/home/scripts/sendmail.sh
|