From c6c49f816ee69a093d8421621f120191a26896e0 Mon Sep 17 00:00:00 2001
From: Chris Croome <chris@webarchitects.co.uk>
Date: Fri, 7 Jul 2017 13:05:02 +0100
Subject: [PATCH] added check to see if the cron script is being run via cron

---
 roles/live2dev/templates/cron.j2 | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/roles/live2dev/templates/cron.j2 b/roles/live2dev/templates/cron.j2
index ab2bb93..07cbb55 100644
--- a/roles/live2dev/templates/cron.j2
+++ b/roles/live2dev/templates/cron.j2
@@ -1,10 +1,14 @@
 #!/bin/bash
 
-if [[ "${USER}" != "{{ item }}" ]]; then
-  echo "This script should be run as {{ item }}, please sudo first"
-  echo "sudo -u {{ item }} -s /bin/bash"
-  echo "${0}"
-  exit
+# $LOGNAME is set to {{ item }} when this script is run via cron and is 
+# unset when run via a terminal
+if [[ "${LOGNAME}" != "{{ item }}" ]]; then
+  if [[ "${USER}" != "{{ item }}" ]]; then
+    echo "This script should be run as {{ item }}, please sudo first"
+    echo "sudo -u {{ item }} -s /bin/bash"
+    echo "${0}"
+    exit
+  fi
 fi
 
 cd ~/sites
-- 
GitLab