Skip to content
Snippets Groups Projects
  1. Oct 16, 2023
  2. Oct 15, 2023
  3. Oct 11, 2023
  4. Oct 10, 2023
  5. Oct 04, 2023
  6. Oct 01, 2023
  7. Sep 30, 2023
  8. Sep 29, 2023
  9. Sep 28, 2023
  10. Sep 26, 2023
  11. Sep 24, 2023
  12. Sep 22, 2023
    • Evangelos Foutras's avatar
      Add ansible.builtin qualification to become_method · d4803179
      Evangelos Foutras authored
      ansible-lint 6.19.0 started complaining about this:
      
         schema[tasks]: 'become_method' must be one of the currently available
         values: ansible.builtin.runas, ansible.builtin.su,
                 ansible.builtin.sudo, ansible.netcommon.enable,
                 community.general.doas, community.general.dzdo,
                 community.general.ksu, community.general.machinectl,
                 community.general.pbrun, community.general.pfexec,
                 community.general.pmrun, community.general.sesu,
                 community.general.sudosu, containers.podman.podman_unshare
      Verified
      d4803179
    • Evangelos Foutras's avatar
      grafana: backups: update storage box size to 20 TB · 0858564c
      Evangelos Foutras authored
      The archive is too chonky to fit in 10T so the storage box is now 20T.
      
      The expression "2^40 * ceil(hetzner_storage_box_size_bytes / 2^40)" is
      used to round up hetzner_storage_box_size_bytes to the next TB because
      when we do "df" on the storage box, the total blocks exclude snapshots.
      Verified
      0858564c
  13. Sep 17, 2023
  14. Sep 13, 2023
  15. Sep 02, 2023
  16. Sep 01, 2023
  17. Aug 31, 2023
  18. Aug 25, 2023
  19. Aug 24, 2023
  20. Aug 21, 2023
  21. Aug 20, 2023
    • Christian Heusel's avatar
      dbscripts: fix createlinks for filenames that contain spaces · 2ad7fefa
      Christian Heusel authored
      So far the for loop recognized filenames with spaces as different words:
      
      $ for f in $(find pkg -type f); do echo "$f"; done
      pkg/usr/bin/Surge
      XT
      Effects
      pkg/usr/bin/Surge
      XT
      
      While the correct output here would have been:
      pkg/usr/bin/Surge XT Effects
      pkg/usr/bin/Surge XT
      
      We fix this by just passing everything directly to readelf, which also
      removes the loop overhead. This results in a significant speedup for
      packages with a lot of libraries and binaries.
      
      fixes: #524
      
      
      Co-Authored-By: default avatarEvangelos Foutras <evangelos@foutras.com>
      Verified
      2ad7fefa
  22. Aug 19, 2023
  23. Aug 18, 2023
Loading