1. 12 Sep, 2022 2 commits
  2. 09 Sep, 2022 1 commit
  3. 08 Sep, 2022 3 commits
  4. 07 Sep, 2022 2 commits
  5. 06 Sep, 2022 1 commit
  6. 05 Sep, 2022 1 commit
  7. 02 Sep, 2022 8 commits
  8. 31 Aug, 2022 1 commit
  9. 22 Aug, 2022 1 commit
  10. 18 Aug, 2022 2 commits
  11. 02 Aug, 2022 2 commits
  12. 18 Jul, 2022 1 commit
    • Ophélie Gagnard's avatar
      playbook/*ridge*: Add a playbook "ridge". · e6bbdfbb
      Ophélie Gagnard authored
      Goal: Fill a reference database in Wendelin for the OCEAN project.
      How: Deploy a script in a Test Suite that scans and upload the desired parts of a KVM filesystem. This is a playbook for the deployment script.
      
      Files: playbook/ridge.yml, playbook/roles/ridge/*
      
      See merge request !163
      e6bbdfbb
  13. 13 Jul, 2022 2 commits
  14. 08 Jul, 2022 2 commits
  15. 06 Jul, 2022 3 commits
  16. 16 Jun, 2022 2 commits
  17. 02 Jun, 2022 2 commits
  18. 24 May, 2022 1 commit
  19. 15 May, 2022 1 commit
  20. 13 May, 2022 1 commit
  21. 07 May, 2022 1 commit
    • Julien Muchembled's avatar
      re6st: fix build on OS with Python 3 · 02d6e441
      Julien Muchembled authored
      For CentOS_8 & CentOS_8_Stream, I give up:
      - nothing provides python, python2, python3 or /usr/bin/python
        (actually, there's a python2 package on CentOS_8_Stream, but only to ship
        a /usr/bin/python2 that tells the user not to use Python 2... wtf ?)
      - by default, there exists /usr/libexec/platform-python and it's functional
        but the build of openssl requires any of python{,2,3} in PATH, which means
        that a probable solution is to:
        - conditionally depend on 'python' only `%if 0%{?centos_ver} != 8`
        - change Makefile.in to add a symlink to /usr/libexec/platform-python
          in a temporary directory that we add to $PATH during the build
      - ... but it's probably fine to use packages for CentOS_7
      02d6e441