- Jul 11, 2023
-
- 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.
-
anarcat authored
We specifically address the Python 2 retirement here, so i think this deals with team#40999 as well, so: Closes: team#40999
- Jul 04, 2023
-
-
Jérôme Charaoui authored
-
Jérôme Charaoui authored
- Jul 03, 2023
-