1. 24 Mar, 2021 3 commits
    • Jérome Perrin's avatar
      software/erp5: include timestamp in haproxy error log · c50de980
      Jérome Perrin authored
      Haproxy log errors for events like when all backends from a family fail the
      health check, it is helpful for investigations to have a timestamp in this log.
      
      We were using ActionFileDefaultTemplate so that access logs use standard
      "combined"-like format, we change so that this apply only to the access log,
      so that error log have the default "timestamp hostname process[pid] message"
      format.
      c50de980
    • Jérome Perrin's avatar
      stack/caucase: generate key / csr only once · 618653e5
      Jérome Perrin authored
      If key or csr are already present, we should not re-run this
      openssl command which generates a new key and a new CSR.
      618653e5
    • Jérome Perrin's avatar
      stack/caucase: fix for python3 · b136ac8f
      Jérome Perrin authored
      hashlib.md5 needs bytes, read the file as binary to prevent
      
          TypeError: Unicode-objects must be encoded before hashing
      b136ac8f
  2. 23 Mar, 2021 9 commits
  3. 22 Mar, 2021 4 commits
  4. 21 Mar, 2021 1 commit
    • Julien Muchembled's avatar
      slapos-sr-testing: do not end paths with / · 0803b816
      Julien Muchembled authored
      This may lead to weird like ...//... or worse: here, the [gcc] part of
      the tested SR will do "os.path.dirname('/usr/bin/')" (when using system
      gcc), causing ${gcc:prefix} to be invalid ('/usr/bin' instead of '/usr')
      and most sharable parts will rebuild (different [gcc] signature).
      0803b816
  5. 19 Mar, 2021 2 commits
  6. 17 Mar, 2021 3 commits
  7. 16 Mar, 2021 3 commits
  8. 15 Mar, 2021 1 commit
  9. 12 Mar, 2021 3 commits
  10. 10 Mar, 2021 10 commits
  11. 09 Mar, 2021 1 commit
    • Kirill Smelkov's avatar
      golang: Fix build to be robust to $GOBIN set from outside · 3b846961
      Kirill Smelkov authored
      Xavier Thompson reports that when Theia is compiled inside Theia, Go
      fails to install with the error showing that golang14's make.bash calls
      `go install` to install cmd/go and other commands to the outer
      go.work/bin instead of inside $GOROOT_FINAL set by the build recipe.
      
      Similarly to !928 this
      might be to the fact that internal `go install` prioritizes $GOBIN even
      in the presence of set $GOROOT_FINAL.
      
      -> Don't try to fix Go itself, and make the compilation more robust by
      unsetting $GOBIN, so that even if that variable is set in the
      environment where buildout runs, it does not affect the compilation
      procedure.
      
      Fixes: 8eac67a5 (golang: Prepare for future GOPATH removal)
      Reported-on: https://www.erp5.com/group_section/forum/Go-compilation-error-P6f5WisQkc
      Tested-by: @xavier_thompson
      Reviewed-on: !932
      3b846961