- Jul 19, 2023
-
- Jul 18, 2023
-
- Jul 12, 2023
-
-
anarcat authored
Phind (GPT-3.5) provided hints for some of those answers, see: https://www.phind.com/search?cache=34fb370d-6ec0-4a3a-b111-001f89f4e824 https://www.phind.com/search?cache=9bbad8e7-006b-49fe-9081-054dda8ac11a See also team#41257
- Jul 11, 2023
-
-
anarcat authored
See: team#41257 Still incomplete.
- Jul 10, 2023
-
-
anarcat authored
See also team#40972 and tpo/tpa/team#40929...
-
anarcat authored
Closes: team#40478
- Jul 09, 2023
-
-
micah authored
-
- Jul 06, 2023
-
- Jul 05, 2023
-
-
Jérôme Charaoui authored
-
Jérôme Charaoui authored
-
anarcat authored
This was done by running this on pauli. First list buster machines: 580 curl -s -G http://localhost:8080/pdb/query/v4 --data-urlencode 'query=nodes { facts { name = "lsbdistcodename" and value = "buster" }}' | jq -r .[].certname | sort Then list bookworm machines: 581 curl -s -G http://localhost:8080/pdb/query/v4 --data-urlencode 'query=nodes { facts { name = "lsbdistcodename" and value = "bookworm" }}' | jq -r .[].certname | sort Then list the other machines, presumably bullseye: 582 curl -s -G http://localhost:8080/pdb/query/v4 --data-urlencode 'query=nodes { facts { name = "lsbdistcodename" and value != "bookworm" and value != "buster" }}' | jq -r .[].certname | sort Check that the count matches (i.e. that there is no other release pending): 583 curl -s -G http://localhost:8080/pdb/query/v4 --data-urlencode 'query=nodes { facts { name = "lsbdistcodename" and value != "bookworm" and value != "buster" }}' | jq -r .[].certname | sort | wc -l 584 curl -s -G http://localhost:8080/pdb/query/v4 --data-urlencode 'query=nodes { facts { name = "lsbdistcodename" and value = "bullseye" }}' | jq -r .[].certname | sort | wc -l List the bullseye machines: 585 curl -s -G http://localhost:8080/pdb/query/v4 --data-urlencode 'query=nodes { facts { name = "lsbdistcodename" and value = "bullseye" }}' | jq -r .[].certname | sort Then the latter list was pasted in the first batch, and manually split out.