1. 08 Oct, 2018 3 commits
  2. 05 Oct, 2018 1 commit
  3. 04 Oct, 2018 3 commits
  4. 03 Oct, 2018 3 commits
  5. 28 Sep, 2018 5 commits
  6. 27 Sep, 2018 1 commit
  7. 26 Sep, 2018 1 commit
  8. 25 Sep, 2018 3 commits
  9. 24 Sep, 2018 1 commit
  10. 21 Sep, 2018 3 commits
  11. 20 Sep, 2018 2 commits
  12. 17 Sep, 2018 8 commits
  13. 14 Sep, 2018 5 commits
  14. 13 Sep, 2018 1 commit
    • Kirill Smelkov's avatar
      slaprunner: Fix bashism in Nginx & Supervisord logrotate entries · 1ab2b30d
      Kirill Smelkov authored
      kill -SIGXXX works only in bash and not when the shell is e.g. dash, for
      example:
      
      	$ kill -SIGUSR1 1
      	/bin/sh: 2: kill: Illegal option -S
      
      This way log rotation for slapproxy.log & friends was not properly working.
      
      Fix it by using `kill -XXX` form which is supported everywhere.
      
      /reviewed-on !402
      1ab2b30d