1. 04 Oct, 2018 7 commits
  2. 03 Oct, 2018 3 commits
  3. 28 Sep, 2018 5 commits
  4. 27 Sep, 2018 1 commit
  5. 26 Sep, 2018 1 commit
  6. 25 Sep, 2018 3 commits
  7. 24 Sep, 2018 1 commit
  8. 21 Sep, 2018 3 commits
  9. 20 Sep, 2018 2 commits
  10. 17 Sep, 2018 8 commits
  11. 14 Sep, 2018 5 commits
  12. 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