Browse Source

Re-added tmp/pids folder and added .gitignore exclusion because of zammad services not running correctly.

Thorsten Eckel 8 years ago
parent
commit
8f983df395
2 changed files with 7 additions and 1 deletions
  1. 7 1
      .gitignore
  2. 0 0
      tmp/pids/.keep

+ 7 - 1
.gitignore

@@ -15,11 +15,17 @@
 
 # Ignore all logfiles and tempfiles.
 /log
-/tmp
+/tmp/*
+/tmp/pids/*
 /public/assets/*.*
 /public/assets/app
 /public/assets/custom
 
+# except /tmp/pids/ which is needed for certain Zammad processes
+!/tmp
+!/tmp/pids
+!/tmp/pids/.keep
+
 # Ignore custom gem file
 /Gemfile.local
 

+ 0 - 0
tmp/pids/.keep