From b79a0c921d4edca1cbbc625f54a93b93b8dbeb9f Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 18 Mar 2019 12:27:41 +0000 Subject: [PATCH] Found a universal place to drop files --- githook.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/githook.php b/githook.php index 7fbb07d..9f85d48 100644 --- a/githook.php +++ b/githook.php @@ -4,8 +4,8 @@ /* security */ $access_token = '1234567890'; -$lastrun = '/tmp/ansible-hook-last-run'; -$dropfile = '/tmp/run-ansible'; +$lastrun = '/dev/shm/ansible-hook-last-run'; +$dropfile = '/dev/shm/run-ansible'; /* get json data */ $json = file_get_contents('php://input');