Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion os_builders/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

See branch 0.4.X for upcoming changes.
### Fixed:

- Removes double quotes from Virtual machine UUID reporting to Pakiti.

## [0.3.1] - 2026-08-25

Expand Down
2 changes: 1 addition & 1 deletion os_builders/roles/vm_baseline/files/run-pakiti
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -x

UUID=$(jq .uuid /mnt/context/openstack/latest/meta_data.json)
UUID=$(jq -r .uuid /mnt/context/openstack/latest/meta_data.json)
# We set the host as the UUID in case there are VMs with duplicte IP addresses
# Such as 192.168.X.Y or 10.10.X.Y
/usr/sbin/pakiti3 --url "https://pakiti.stfc.ac.uk/feed/" --site Cloud --host "$UUID"
Loading