summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xalun.install13
1 files changed, 7 insertions, 6 deletions
diff --git a/alun.install b/alun.install
index ed501179aae2..38afc03123fd 100755
--- a/alun.install
+++ b/alun.install
@@ -3,13 +3,14 @@ post_install() {
systemctl is-enabled cronie > /dev/null || sudo systemctl enable cronie
# start cronie service if it's not started
systemctl is-active cronie > /dev/null || sudo systemctl start cronie
- # create the crontab file
- tput setaf 196
- echo "==> Add the following line to your crontab file by running."
- echo "$ crontab -e"
- echo "*/30 * * * * env DISPLAY=:0 /usr/bin/alun"
- echo "==> Run this command if you don't have a crontab file"
+ # Notify the user to create the crontab and change default terminal
+ tput setaf 196 # red color to bring your attention
+ echo "==> Don't forget to change default terminal inside /etc/alun/conf.py"
+ echo "==> Create a new crontab file using."
echo "$ crontab /etc/alun/crontab"
+ echo "==> Or"
+ echo "==> Append crontab file to old one using."
+ echo "$ cat /etc/alun/crontab >> /var/spool/cron/\$USER"
tput sgr0
}