From d38b4d4be4f3e9410fc4da63b57c92d63328c633 Mon Sep 17 00:00:00 2001
From: Chris Croome <chris@webarchitects.co.uk>
Date: Fri, 7 Jul 2017 12:31:06 +0100
Subject: [PATCH] User check added

---
 roles/live2dev/templates/cron.j2 | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/roles/live2dev/templates/cron.j2 b/roles/live2dev/templates/cron.j2
index cab448e..28ebb71 100644
--- a/roles/live2dev/templates/cron.j2
+++ b/roles/live2dev/templates/cron.j2
@@ -1,5 +1,12 @@
 #!/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
+fi
+
 cd ~/sites
 
 GIT_PULL=$(git pull | grep -v "up-to-date")
-- 
GitLab