Testing release

This commit is contained in:
toloveru
2017-04-03 19:45:41 +02:00
parent e9909cb6aa
commit 21d8d38284
4 changed files with 135 additions and 1 deletions

9
install Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
sudo cp -v kernelcheck /usr/local/sbin/kernelcheck
sudo cp -v notify_all /usr/local/sbin/notify_all
printf "Adding hourly service to cron scheduler..\n"
(sudo crontab -l; echo "@hourly /usr/local/sbin/kernelcheck" ) | sudo crontab -
printf "Enabling cronie scheduler..\n" # Let me know if you use something else, and enable manually.
sudo systemctl start cronie.service
sudo systemctl enable cronie.service
printf "Installation complete.\n"