Skip to content

Commit

Permalink
images/server: Use $basearch in ceph devbuilds repo file
Browse files Browse the repository at this point in the history
Remove the hardcoded 'x86_64' value from generated repo file for ceph
development builds and use standard $basearch dnf repo variable.

Signed-off-by: Anoop C S <[email protected]>
  • Loading branch information
anoopcs9 authored and mergify[bot] committed Jan 9, 2025
1 parent 6bae989 commit 21c22af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/server/install-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ref = r[0]["ref"]
with open(dest, "w") as out:
print(f"[ceph-{ref}]", file=out)
print(f"name=Ceph Development Build ({ref})", file=out)
print(f"baseurl={url}/x86_64", file=out)
print(f"baseurl={url}/\$basearch", file=out)
print("enabled=1", file=out)
print("gpgcheck=0", file=out)
EOF
Expand Down

0 comments on commit 21c22af

Please sign in to comment.