1. 05 2月, 2016 1 次提交
  2. 01 2月, 2016 1 次提交
  3. 19 1月, 2016 2 次提交
  4. 05 1月, 2016 1 次提交
  5. 22 12月, 2015 1 次提交
  6. 15 12月, 2015 1 次提交
  7. 07 12月, 2015 1 次提交
  8. 04 12月, 2015 1 次提交
  9. 24 11月, 2015 1 次提交
  10. 23 11月, 2015 1 次提交
  11. 19 11月, 2015 2 次提交
  12. 09 11月, 2015 1 次提交
  13. 04 11月, 2015 1 次提交
  14. 03 11月, 2015 1 次提交
  15. 29 10月, 2015 2 次提交
  16. 23 10月, 2015 3 次提交
  17. 16 10月, 2015 1 次提交
  18. 12 10月, 2015 1 次提交
  19. 09 10月, 2015 3 次提交
  20. 01 10月, 2015 1 次提交
  21. 30 9月, 2015 1 次提交
  22. 29 9月, 2015 3 次提交
  23. 28 9月, 2015 1 次提交
  24. 25 9月, 2015 2 次提交
  25. 24 9月, 2015 1 次提交
  26. 22 9月, 2015 2 次提交
    • Travis Cross's avatar
      Remove explicit set of WorkingDirectory · e49f8c65
      Travis Cross 提交于
      In the systemd unit for FS/debian, if the WorkingDirectory is not set
      then it defaults to '/'.  This is fine for FS, and is a common and
      expected chdir choice for daemons.
      
      We had previously set this to /run/freeswitch.  Due to Debian having
      systemd-coredump(8) disabled, this was causing core files to be
      written to /run/freeswitch, which is a bad place for them as it's
      mounted on tmpfs.
      
      It's better to leave FS as running on '/'.  This will prevent core
      files from being written unless the user adjusts `sysctl
      kernel.core_pattern`, which is a reasonable thing to expect if the
      user wants these files.  Core files can be huge, and having them go
      anywhere unexpectedly can be a problem.
      
      When Debian adds the systemd-coredumps support this will all work
      nicely and automatically.
      
      ref: http://www.freedesktop.org/software/systemd/man/coredump.conf.html
      ref: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744964
      
      FS-7909
      e49f8c65
    • Travis Cross's avatar
      Use systemd RuntimeDirectory for /run/freeswitch · 0aca2c71
      Travis Cross 提交于
      This changes how we create the temporary directory /run/freeswitch
      when starting FS with systemd.  The /run directory starts empty after
      a system reboot, so we need to ensure this directory is present.
      
      As part of systemd.exec(5), systemd provides a mechanism to
      automatically manage these directories under /run and to bind their
      lifetime to the lifetime of the process.
      
      This commit moves to using the RuntimeDirectory= mechanism and removes
      the obsolete ExecStartPre/mkdir code.
      
      FS-7130
      0aca2c71
  27. 21 9月, 2015 3 次提交