1. 07 May, 2024 4 commits
    • Joanne Hugé's avatar
      TODO, right now all this is needed: · 305fdc9d
      Joanne Hugé authored
      - add tun and netns for ims:
      
      patchelf --set-rpath /opt/amarisoft/v2024-05-02/mme /opt/amarisoft/v2024-05-02/mme/lteims
      setcap cap_sys_admin,cap_net_raw=+pe /opt/amarisoft/v2024-05-02/mme/lteims
      ip tuntap add mode tun tun-ims
      ip netns add ims
      ip link set dev tun-ims name tun-ims netns ims
      ip netns exec ims ip addr add 172.22.64.1/0 dev tun-ims
      ip netns exec ims ip link set tun-ims up mtu 1400
      ip netns exec ims ip route add default dev tun-ims
      
      - SIM cards config needs to be modified:
        set correct impu and impi (001010000001312,
        001010000001312@ims.mnc001.mcc001.3gppnetwork.org)
      
      - add /opt/amarisoft/setcap:
      
      cat $1 | sha256sum -c <(echo 6bfcaf04b7da084874f34a77aacc1b2c6217c1d18bfda225f30dee950e32d48c -) --quiet &&
      setcap cap_net_admin=+pe $1
      chmod 644 /opt/amarisoft/setcap
      305fdc9d
    • Joanne Hugé's avatar
      wip · 92ec00bd
      Joanne Hugé authored
      92ec00bd
    • Joanne Hugé's avatar
      wip · a024d681
      Joanne Hugé authored
      a024d681
    • Joanne Hugé's avatar
      wip · ae8fb3d9
      Joanne Hugé authored
      ae8fb3d9
  2. 06 May, 2024 2 commits
  3. 23 Apr, 2024 1 commit
  4. 22 Apr, 2024 4 commits
  5. 16 Apr, 2024 1 commit
  6. 11 Apr, 2024 5 commits
  7. 25 Mar, 2024 1 commit
  8. 22 Mar, 2024 1 commit
  9. 21 Mar, 2024 4 commits
  10. 20 Mar, 2024 3 commits
  11. 19 Mar, 2024 3 commits
  12. 18 Mar, 2024 6 commits
  13. 15 Mar, 2024 2 commits
  14. 13 Mar, 2024 1 commit
    • Léo-Paul Géneau's avatar
      component/qjs-wrapper: v↑ qjs-wrapper (1.3 -> 2.0) · 649249ca
      Léo-Paul Géneau authored
      component/mavsdk: v↑ mavsdk (0.39.0 -> 1.4.13)
      component/gwsocket: add gwsocket websocket server
      software/js-drone: add frontend for subscriber
      software/js-drone: use WebSocket for subscriber
      slapos/software: run quickjs as a service
      649249ca
  15. 12 Mar, 2024 2 commits
    • Łukasz Nowak's avatar
      rapid-cdn: Fix re6st-verification-url testing · be75d825
      Łukasz Nowak authored
       * the default is already tested so drop TestRe6stVerificationUrlDefaultSlave
       * use locally provided URL to check re6st-verification-url, to not depend
         on external resources
      
      !1501 did a good job with making default disabled, but during the code
      review tests changes were not well checked.
      be75d825
    • Titouan Soulard's avatar
      rapid-cdn: fix failing test · 00586554
      Titouan Soulard authored
      logrotate test for the rapid-cdn SR have been failing for quite some
      time because of a squid.log file created (and henceforth rotated) on
      any slave instance of the CDN:
      
      ```
      Traceback (most recent call last):
          self.assertEqual(
      AssertionError: Items in the second set but not the first:
      'squid.log_10.0.160.212.20240306.23h57m09s-20240307.00h00m02s.old.xz'
      ```
      
      Since we do not want to test this file in that specific test, this
      commit instead loosely check the content of the rotated files
      directory.
      In other words, the test now checks for the presence of the two
      files to be tested, but avoid failing if other files exist.
      
      This goes in line with the two following lines of that same test,
      loosely checking for file absence instead of an empty directory.
      
      /cc @tomo @luke
      /approved-by @luke
      /reviewed-on !1541
      00586554