1. 08 Feb, 2023 3 commits
  2. 23 Jan, 2023 1 commit
  3. 18 Jan, 2023 2 commits
  4. 16 Jan, 2023 6 commits
  5. 13 Jan, 2023 1 commit
  6. 20 Dec, 2022 1 commit
  7. 25 Aug, 2022 2 commits
    • Jérome Perrin's avatar
      b17843bc
    • Jérome Perrin's avatar
      resiliencytestsuite: python3 fix · ec47c8e3
      Jérome Perrin authored
      urlopen(url).read() returns bytes, this fixes:
      
            File "slapos.toolbox-repository/slapos/resiliencytest/suites/resiliencytestsuite.py", line 162, in _waitForCloneToBeReadyForTakeover
              while "<b>Importer script(s) of backup in progress:</b> True" in takeover_page_content:
          TypeError: a bytes-like object is required, not 'str'
      
      errors with KVM resilience tests
      ec47c8e3
  8. 30 Jun, 2022 2 commits
  9. 05 Jun, 2022 2 commits
  10. 12 May, 2022 1 commit
  11. 18 Oct, 2021 2 commits
  12. 04 Oct, 2021 3 commits
  13. 30 Sep, 2021 3 commits
  14. 21 Sep, 2021 1 commit
  15. 25 Aug, 2021 1 commit
  16. 24 Aug, 2021 1 commit
  17. 23 Jul, 2021 2 commits
    • Thomas Gambier's avatar
      Release 0.123 · 95726826
      Thomas Gambier authored
      95726826
    • Eric Zheng's avatar
      plugin/check_url_available: rewrite options · a0466ad7
      Eric Zheng authored
      The check_url_available promise has been improved with the following
      changes:
      
      - The `http_code` parameter has been renamed `http-code` for consistency.
      - The `check-secure` parameter has been removed. Users should specify
        `http-code = 401` instead.
      - The `username` and `password` parameters have been added to optionally
        enable HTTP basic authentication.
      - The logging output has been changed slightly.
      a0466ad7
  18. 29 Jun, 2021 2 commits
  19. 24 Jun, 2021 2 commits
  20. 23 Jun, 2021 1 commit
  21. 22 Jun, 2021 1 commit
    • Xavier Thompson's avatar
      promise/plugin: Add check_socket_listening promise · 428870e3
      Xavier Thompson authored
      This promise generalizes the check_port_listening promise to include
      AF_UNIX sockets in addition to AF_INET and AF_INET6 host/port sockets.
      
      The socket family and address is deduced from the set of arguments:
      - `host` & `port`: AF_INET or AF_INET6
      - `pathname`: filesystem pathname address for AF_UNIX
      - `abstract`: '\0' is prefixed to build an abstract AF_UNIX address
      
      All other combinations of arguments are forbidden.
      
      The promise creates a socket accordingly and attempts to connect to the
      provided address. The promise fails if the connection fails.
      
      The check_port_listening promise has been removed.
      
      See merge request !97
      428870e3