Hashar has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/260007

Change subject: Dump stat() for tmp directory
......................................................................

Dump stat() for tmp directory

To help debug:
    chmod: changing permissions of
    ‘/mnt/home/jenkins-deploy/tmpfs/jenkins-1’: Operation not permitted

stat() both temporary directories, will at least give us the file
creation time which would help find which job/build caused the creation.

Use '|| :' to not exist when the directory does not exist.

Bug: T120824
Change-Id: I7c96d82c49b09eb325f801d8a3ba0440f8efdac3
---
M bin/global-setup.sh
1 file changed, 3 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/integration/jenkins 
refs/changes/07/260007/1

diff --git a/bin/global-setup.sh b/bin/global-setup.sh
index 4c77e4d..b4b7854 100755
--- a/bin/global-setup.sh
+++ b/bin/global-setup.sh
@@ -2,6 +2,9 @@
 
 . /srv/deployment/integration/slave-scripts/bin/global-set-env.sh
 
+stat "$TMPDIR_FS" || :
+stat "$TMPDIR_REGULAR" || :
+
 mkdir -p "$TMPDIR_FS"
 mkdir -p "$TMPDIR_REGULAR"
 

-- 
To view, visit https://gerrit.wikimedia.org/r/260007
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7c96d82c49b09eb325f801d8a3ba0440f8efdac3
Gerrit-PatchSet: 1
Gerrit-Project: integration/jenkins
Gerrit-Branch: master
Gerrit-Owner: Hashar <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to